mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
* adding new feature: watch listings for changes * adding todo for watch feature * sort by watch
12 lines
208 B
JavaScript
12 lines
208 B
JavaScript
import React from 'react';
|
|
|
|
import ListingsTable from '../../components/table/listings/ListingsTable.jsx';
|
|
|
|
export default function Listings() {
|
|
return (
|
|
<div>
|
|
<ListingsTable />
|
|
</div>
|
|
);
|
|
}
|