ragflow / web /src /app.tsx
balibabu
remove showDeleteConfirm function and center the Empty of knowledge list and extract the text of the login page to en.json (#203)
e441caf
raw
history blame
313 Bytes
import { App, ConfigProvider } from 'antd';
import { ReactNode } from 'react';
export function rootContainer(container: ReactNode) {
return (
<ConfigProvider
theme={{
token: {
fontFamily: 'Inter',
},
}}
>
<App> {container}</App>
</ConfigProvider>
);
}