12 lines
203 B
TypeScript
12 lines
203 B
TypeScript
|
import React from "react";
|
||
|
|
||
|
const DataTable = () => {
|
||
|
return (
|
||
|
<section id="datatable" className="wrapper container py-2 sm:py-9">
|
||
|
DataTable
|
||
|
</section>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default DataTable;
|