mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
12 lines
199 B
React
12 lines
199 B
React
|
|
import React from 'react';
|
||
|
|
|
||
|
|
import ListingsTable from '../../components/table/ListingsTable.jsx';
|
||
|
|
|
||
|
|
export default function Listings() {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<ListingsTable />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|