mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-21 05:16:54 +08:00
feat: remove showDeleteConfirm function feat: center the Empty of knowledge list feat: extract the text of the login page to en.json #204
17 lines
313 B
TypeScript
17 lines
313 B
TypeScript
import { App, ConfigProvider } from 'antd';
|
|
import { ReactNode } from 'react';
|
|
|
|
export function rootContainer(container: ReactNode) {
|
|
return (
|
|
<ConfigProvider
|
|
theme={{
|
|
token: {
|
|
fontFamily: 'Inter',
|
|
},
|
|
}}
|
|
>
|
|
<App> {container}</App>
|
|
</ConfigProvider>
|
|
);
|
|
}
|