mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-31 17:15:32 +08:00
### 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)
18 lines
405 B
TypeScript
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;
|