github.com/pluralsh/plural-cli@v0.9.5/pkg/ui/web/src/routes/nextsteps/route.tsx (about)

     1  import React from 'react'
     2  import { DataRouteObject } from 'react-router-dom'
     3  
     4  import { Routes } from '../routes'
     5  
     6  const NextSteps = React.lazy(() => import('./NextSteps'))
     7  
     8  const route: DataRouteObject = {
     9    id: 'next',
    10    path: Routes.Next,
    11    element: <NextSteps />,
    12  }
    13  
    14  export { route as nextStepsRoute }