Skip to content

Instantly share code, notes, and snippets.

@NerdPraise
Last active June 14, 2023 20:18
Show Gist options
  • Save NerdPraise/6f21749f89acc84d42c5199808657037 to your computer and use it in GitHub Desktop.
Save NerdPraise/6f21749f89acc84d42c5199808657037 to your computer and use it in GitHub Desktop.
import { createBrowserRouter } from 'react-router-dom'
import { Login } from '../authentication/Login/Login'
const ROUTES = [
{
path: '/login',
element: <Login />,
},
]
export const AppBrowserRouter = createBrowserRouter(ROUTES)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment