بدون توضیح

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