Skip to main content

Components LibraryALPHA

Learn the basics of using epilot UI Components Library to build your custom capabilities on top of our 360 platform.

[SDK] [Storybook]

The entire epilot platform is built around the concept of flexibility and customization. We believe that the best way to achieve this is by providing a set of UI components that can be used to build custom capabilities on top of the epilot platform.

The epilot UI Components Library is built using React and Material UI. And it's distributed as a set of npm packages:

Storybook​

The epilot UI Components Library is documented using Storybook. You can find the latest version of the Storybook under the following links:

Getting Started​

To get started, you can install the package using npm:

npm install @epilot/base-elements

You can then import the components in your React application:

import { Button, ThemeProvider } from '@epilot/base-elements'

function App() {
return (
<ThemeProvider>
<Button>My Button</Button>
</ThemeProvider>
)
}