import React, { useState } from 'react'; import { BrowserRouter as Router, Route, Switch } from 'react-router-dom'; /* Component */ import WizardRoute from './WizardRoute'; function WizardMain() { const [ templatePreview, setTemplatePreview ] = useState( false ); return (
); } export default WizardMain;