Files
ragflow/web/src/pages/home/index.tsx
balibabu f35c5ed119 Fix: Fixed an issue where parser configurations could be added infinitely #9869 (#10464)
### What problem does this PR solve?

Fix: Fixed an issue where parser configurations could be added
infinitely #9869

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
2025-10-10 16:30:13 +08:00

18 lines
405 B
TypeScript

import { Applications } from './applications';
import { NextBanner } from './banner';
import { Datasets } from './datasets';
const Home = () => {
return (
<section>
<NextBanner></NextBanner>
<section className="h-[calc(100dvh-260px)] overflow-auto px-10">
<Datasets></Datasets>
<Applications></Applications>
</section>
</section>
);
};
export default Home;