File size: 349 Bytes
3fa1285 e6a705f 3fa1285 1b2bfb1 8446e15 1b2bfb1 e6a705f 3fa1285 1b2bfb1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import { Applications } from './applications';
import { Banner } from './banner';
import { Datasets } from './datasets';
const Home = () => {
return (
<div className="mx-8">
<section>
<Banner></Banner>
<Datasets></Datasets>
<Applications></Applications>
</section>
</div>
);
};
export default Home;
|