0.0.10 • Published 6 years ago

react-cf-component-landing-page v0.0.10

Weekly downloads
13
License
MIT
Repository
github
Last release
6 years ago

react-cf-component-landing-page

Landing page component for Control Fitness.

This component work with https://www.npmjs.com/package/found.

Example:

...
import LandingPage from 'react-cf-component-landing-page';
...

...
const routeConfig = [
  {
    path: '/',
    Component: App,
    children: [
      {
        Component: LandingPage,
      },
    ]
  },
];
...