ragflow/web/src/app.tsx

17 lines
313 B
TypeScript
Raw Normal View History

import { App, ConfigProvider } from 'antd';
import { ReactNode } from 'react';
export function rootContainer(container: ReactNode) {
return (
<ConfigProvider
theme={{
token: {
fontFamily: 'Inter',
},
}}
>
<App> {container}</App>
</ConfigProvider>
);
}