@computas/chubben-shared
v1.0.1
Published
Shared UI elements used in Chubben web projects
Keywords
Readme
Getting started
Install the library in your application using your preferred package manager.
npm install @computas/chubben-sharedImport the components that you need for your application.
import { CxShell } from "@computas/chubben-shared";Finally, use your component in your template.
Make sure to pass the correct environment variable to the env prop based on how your frontend is configured. Valid values are development and production
// React
<CxShell env={`${env}`}>
<p>Place your router outlet here</p>
</CxShell>