12 lines
173 B
TypeScript
12 lines
173 B
TypeScript
|
|
import SimpleTable from "./components/SimpleTable";
|
||
|
|
import './App.css';
|
||
|
|
|
||
|
|
function App() {
|
||
|
|
return (
|
||
|
|
<main>
|
||
|
|
<SimpleTable />
|
||
|
|
</main>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default App;
|