App React Component

App React component is the main Framework7 app component where all the Framework7 core initialization happens and where you pass all main Framework7 parameters.

App Components

There are following components included:

App Properties

App component receives all App parameters as component props.

Examples

import AboutPage from './about.jsx';
import ServicesPage from './services.jsx';

const f7params = {
  name: 'My App',
  // routes
  routes: [
    {
      path: '/about/',
      component: AboutPage,
    },
    {
      path: '/services/',
      component: ServicesPage,
    },
  ],
  // ... other params
}
export default () => (
  <App {...f7params}>
    ...
  </App>
);