AppSettings
This component renders the Settings page in the Admin Interface. The Settings page is where you can trigger the build webhooks if you are using a static website generator and access the dashboard to configure the project.
It needs no props, but it must be wrapped by the Admin component to receive the needed context.
The route where this component is shown has to be specified in ReactBricks’s configuration parameter appSettingsPath.
Usage example
Section titled “Usage example”import React from 'react'import { Admin, AppSettings } from 'react-bricks'
const AppSettingsPage = () => { return ( <Admin> <AppSettings /> </Admin> )}
export default AppSettingsPage