AppSettings

This component renders the AppSettings page for React Bricks Admin Dashboard.
The AppSettings page is where you configure and trigger the build webhooks if you are using a static website generator like Gatsby or Next.js.

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

import React from 'react'
import { Admin, AppSettings } from 'react-bricks'
const AppSettingsPage = () => {
return (
<Admin>
<AppSettings />
</Admin>
)
}
export default AppSettingsPage