Files
fredy/ui/src/views/listings/Listings.jsx

12 lines
199 B
React
Raw Normal View History

import React from 'react';
import ListingsTable from '../../components/table/ListingsTable.jsx';
export default function Listings() {
return (
<div>
<ListingsTable />
</div>
);
}