aboutsummaryrefslogtreecommitdiff
path: root/src/routes.tsx
blob: 1a3daa1acf404d50ff1abd067bbcfa46f377a8b0 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { createBrowserRouter } from 'react-router-dom';
import { Top } from './Top';
import { SignUp } from './SignUp';
import { SignUpForm1 } from './SignUpForm1';
import { SignUpForm2 } from './SignUpForm2';
import { SignUpConfirm } from './SignUpConfirm';

export const routes = createBrowserRouter([
  { path: '/', element: <Top /> },
  { path: '/sign-up', element: <SignUp /> },
  { path: '/sign-up/form1', element: <SignUpForm1 /> },
  { path: '/sign-up/form2', element: <SignUpForm2 /> },
  { path: '/sign-up/confirm', element: <SignUpConfirm /> },
]);