Files
ragflow_python/web/src/pages/home/index.tsx

16 lines
265 B
TypeScript
Raw Normal View History

import { CardWithForm } from './card';
import { HomeHeader } from './header';
const Home = () => {
return (
<div>
<HomeHeader></HomeHeader>
<section>
<CardWithForm></CardWithForm>
</section>
</div>
);
};
export default Home;