Socket
Socket
Sign inDemoInstall

ncore-web

Package Overview
Dependencies
2
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ncore-web

NİBGAT® | Ncore - Web Component Library


Version published
Maintainers
1
Created

Readme

Source


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

Keywords

FAQs

Last updated on 24 Aug 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc