@illumidesk/common-ui
v0.6.31
Published
A Common package that shared the common react components between all the packages like lms and admin dashboard.
Downloads
79
Readme
Common
A Common package that shared the common react components between all the packages like lms and admin dashboard.
Installation
npm i @illumidesk/common-ui
or
yarn add @illumidesk/common-ui
Usage
import React, { FC } from 'react';
import { ThemeProvider } from '@material-ui/core/styles';
import { CustomTheme } from '@illumidesk/common-ui';
import AllCourses from './containers/allCourses';
const App: FC = (): JSX.Element => {
return (
<ThemeProvider theme={CustomThmere}>
<AllCourses />
</ThemeProvider>
);
};
export default App;