13 lines
205 B
TypeScript
13 lines
205 B
TypeScript
import TanStackTable from "@/components/table/TanStackTable";
|
|
import React from "react";
|
|
|
|
const HomePage = () => {
|
|
return (
|
|
<div>
|
|
<TanStackTable />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default HomePage;
|