설명 없음

lfabl b28f28f8e2 First commit. 2 년 전
.husky b28f28f8e2 First commit. 2 년 전
.storybook b28f28f8e2 First commit. 2 년 전
.vscode b28f28f8e2 First commit. 2 년 전
src b28f28f8e2 First commit. 2 년 전
stories b28f28f8e2 First commit. 2 년 전
.eslintignore b28f28f8e2 First commit. 2 년 전
.eslintrc.json b28f28f8e2 First commit. 2 년 전
.gitignore b28f28f8e2 First commit. 2 년 전
.npmignore b28f28f8e2 First commit. 2 년 전
README.md b28f28f8e2 First commit. 2 년 전
TODO b28f28f8e2 First commit. 2 년 전
jest-setup.ts b28f28f8e2 First commit. 2 년 전
jest.config.js b28f28f8e2 First commit. 2 년 전
package.json b28f28f8e2 First commit. 2 년 전
rollup.config.js b28f28f8e2 First commit. 2 년 전
tsconfig.json b28f28f8e2 First commit. 2 년 전
yarn.lock b28f28f8e2 First commit. 2 년 전

README.md


NİBGAT® | NCore Web Component Library

Documentation

Please visit for docs: NCore 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

      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>;
      }
      

Discord

NİBGAT® | Community