import { Provider } from 'react-redux'; import { RouterProvider } from 'react-router-dom'; import { ToastContainer } from 'react-toastify'; import store from './app/store'; import router from './routes/router'; import 'react-toastify/dist/ReactToastify.css'; import DeprecationNotice from "./components/DeprecationNotice"; const App: React.FC = () => { return ( <> ); }; export default App;