mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
* completing found listings --------- Co-authored-by: Christian Kellner <Christian.Kellner1@ibm.com>
12 lines
199 B
JavaScript
12 lines
199 B
JavaScript
import React from 'react';
|
|
|
|
import ListingsTable from '../../components/table/ListingsTable.jsx';
|
|
|
|
export default function Listings() {
|
|
return (
|
|
<div>
|
|
<ListingsTable />
|
|
</div>
|
|
);
|
|
}
|