Logo

Navigation

  • Introduction
  • Structure
  • Environments
  • Setting up
  • How to …
  • References
    • Formula 1
    • Scripts
    • Configuration files
  • Legal
  • Credits

Related Topics

  • Documentation overview
    • References
      • Formula 1
        • Components
          • Previous: App main
          • Next: Default DP

Quick search

 
  • ← App main
  • Default DP →

App footer¶

The app footer is always attached to the bottom of the screen and shows copyright and maintainer information. The footer is also some the coolest code in the entirety of Omniport’s frontend.

Props¶

  1. creators

    Type
    [{
      name: string,
      role: string,
      <link: string>
    }]
    

    <> denotes optional field

    Default

    *required

    Description
    the creators who deserve credit for their app in the footer

Example usage¶

import { AppFooter } from 'formula_one'

Importing AppFooter from formula_one

const creators = [
  {
    name: 'Dhruv Bhanushali',
    role: 'Backend developer',
    link: 'https://dhruvkb.github.io/'
  },
  {
    name: 'Praduman Goyal',
    role: 'Frontend developer',
    link: 'https://pradumangoyal.github.io/'
  }
]

Defining an array of objects to pass in creators

<AppFooter creators={creators} />

Using AppFooter, passing creators list

 
  • ← App main
  • Default DP →
©Information Management Group. | Page source
Fork me on GitHub