import React from 'react'; import PageLayout from './components/layout'; import { ConfigProvider } from 'antd'; import useConfigStore from './store/config'; import { useNavigate } from 'react-router-dom'; const App: React.FC = () => { const theme = useConfigStore(state => state.themeConfig) const navigate = useNavigate() // TODO: refactor this logic if (window.location.pathname === '/') { setTimeout(() => { navigate('/account/list') }) } return ( ) }; export default App;