import React from 'react'; import '@radix-ui/themes/styles.css'; import { Theme } from '@radix-ui/themes'; import { ToastContainer } from 'react-toastify'; import 'react-toastify/dist/ReactToastify.css'; import { BrowserRouter as Router, Routes, Route } from 'react-router-dom'; import Home from './src/pages/Home'; import NotFound from './src/pages/NotFound'; const App: React.FC = () => { return (
} /> } />
); } export default App;