|
|
2 yıl önce | |
|---|---|---|
| .husky | 2 yıl önce | |
| .storybook | 2 yıl önce | |
| .vscode | 2 yıl önce | |
| src | 2 yıl önce | |
| stories | 2 yıl önce | |
| .eslintignore | 2 yıl önce | |
| .eslintrc.json | 2 yıl önce | |
| .gitignore | 2 yıl önce | |
| .npmignore | 2 yıl önce | |
| README.md | 2 yıl önce | |
| TODO | 2 yıl önce | |
| jest-setup.ts | 2 yıl önce | |
| jest.config.js | 2 yıl önce | |
| package.json | 2 yıl önce | |
| rollup.config.js | 2 yıl önce | |
| tsconfig.json | 2 yıl önce | |
| yarn.lock | 2 yıl önce |
NİBGAT® | NCore Web Component Library
Please visit for docs: NCore Web
If you install with yarn these packages will already be installed.
The library is exporting sample base components to be used in react project you can test it like this :
npm install ncore-web --saveYARN: yarn add ncore-web
import {
NCoreProvider,
useNCoreTheme,
Button
} from 'ncore-web';
const Home = () => {
const {
activeTheme
} = useNCoreTheme();
return <div>
Welcome to Home Page. Your theme is: {activeTheme}
</div>;
};
const App = () => {
return <NCoreProvider>
<div className="App">
<Button title="hi" />
</div>
</NCoreProvider>;
}