UNPKG

tix-react-ssr

Version:

Tiket.com React Project Scripts

20 lines (19 loc) 329 B
import Layout from '../components/Layout'; import Landing from './Landing'; import NotFound from './NotFound'; export default [ { component: Layout, routes: [ { path: "/", exact: true, component: Landing }, { path: "*", component: NotFound } ] } ];