payment route

This commit is contained in:
Priyatham Sai Chand 2021-03-23 23:31:16 +05:30 committed by Priyatham-sai-chand
parent 15a99eb78b
commit eb8e51eb15
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@ import Stepper from './components/Stepper';
import NavBar from "./components/NavBar";
import FillingDetails from "./components/FillingDetails";
import Error404 from './components/Error404';
import Payment from './components/Payment'
export default function App() {
const [userData, setUserData ] = useState({
token: undefined,
@ -57,6 +58,7 @@ export default function App() {
<Route path="/track" component={Stepper} />
<Route path="/options" component={Options} />
<Route path="/details" component={FillingDetails} />
<Route path="/payment" component={Payment} />
<Route path="/" component={Error404} />
</Switch>
</UserContext.Provider>