mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-02 04:26:21 +00:00
13 lines
264 B
TypeScript
13 lines
264 B
TypeScript
import React from 'react';
|
|
import { HomePageHeader } from './HomePageHeader';
|
|
import { HomePageBody } from './HomePageBody';
|
|
|
|
export const HomePage = () => {
|
|
return (
|
|
<>
|
|
<HomePageHeader />
|
|
<HomePageBody />
|
|
</>
|
|
);
|
|
};
|