Skip to main content
Version: v3.0

Shell

Custom Shell

The sidebar displays a list of models that are available to the user. The list is generated from the models property of the PrimaryNavigation component.

const rhinoConfig = {
version: 1,
components: {
ApplicationShell: MyCustomShell
}
}

The new shell should take and display children:

src/MyCustomShell.js
export const MyCustomShell = ({ children }) => {
return (
<div>
<h1>My Custom Shell</h1>
{children}
</div>
);
};