Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nulogy/components

Package Overview
Dependencies
Maintainers
7
Versions
482
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nulogy/components

Component library for the Nulogy Design System - http://nulogy.design

  • 0.1.16
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
528
increased by11.39%
Maintainers
7
Weekly downloads
 
Created
Source

@nulogy/components is a component library built with React that makes it easy for you to build interfaces that conform to the principles of the Nulogy Design System.

📖 👀 Browse components online in Storybook


Installation

The @nulogy/components library can be installed from npm.

$ yarn add @nulogy/components react react-dom styled-components
`@nulogy/components` has a few peer dependencies that you will need to install: `react react-dom styled-components`.

See the [package.json](https://github.com/nulogy/design-system/blob/master/components/package.json) for compatible versions of these dependencies.

Usage

Please see the docs for the individual components for details on their use, but in general components can be imported and rendered as you would expect:

lang: javascript
---
import React from 'react'
import ReactDOM from 'react-dom';
import { Button, P, Title } from '@nulogy/components';

const App = props => (
  <React.Fragment>
    <Title>My App</Title>
    <P>This is a paragraph.</P>
    <Button>Click me!</Button>
  </React.Fragment>
);

ReactDOM.render(<App />, document.getElementById('root'))

Contributing

See Guides/Quick start for instructions on how to install and work with this project, and Guides/Package Scripts for more details on the commands available in the project.

Keywords

FAQs

Package last updated on 20 Sep 2018

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc