App.tsx 324 Bytes
Newer Older
Kerem Çubuk's avatar
Kerem Çubuk committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Heading from './components/Heading';
import Table from './components/Table';
import { default as data } from './data.json';
import './App.css';

const App = () => {
  return (
    <div className="App">
      <Heading title="Products" />
      <Table data={data.productList} />
    </div>
  );
};

export default App;