### Documentation
Please visit for docs: [NCore Web](https://ncore.nibgat.space/web)
### Dependencies
If you install with yarn these packages will already be installed.
- react-jss
### Base Library
- The library is exporting sample base components to be used in react project you can test it like this :
- NPM: `npm install ncore-web --save`
- YARN: `yarn add ncore-web`
```js
import {
NCoreProvider,
useNCoreTheme,
Button
} from 'ncore-web';
const Home = () => {
const {
activeTheme
} = useNCoreTheme();
return
Welcome to Home Page. Your theme is: {activeTheme}