### What problem does this PR solve? feat: Add Datasets component to home page #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
19 lines
431 B
TypeScript
19 lines
431 B
TypeScript
import { Applications } from './applications';
|
|
import { Banner } from './banner';
|
|
import { Datasets } from './datasets';
|
|
import { HomeHeader } from './header';
|
|
|
|
const Home = () => {
|
|
return (
|
|
<div className="text-white mx-8">
|
|
<HomeHeader></HomeHeader>
|
|
<section>
|
|
<Banner></Banner>
|
|
<Datasets></Datasets>
|
|
<Applications></Applications>
|
|
</section>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Home;
|