1.0.1 • Published 1 year ago

@shadowsonata/nsw-ds-react v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

NSW Design System React Library

This is adapted from the original NSW Design System React Library but re-written in TypeScript and removed the global client side JavaScript.

Install

npm install @shadowsonata/nsw-ds-react

Add the styles separately in your main app file entry:

import "nsw-design-system/dist/css/main.css";

Usage

Storybook coming soon... In the meantime you can use the storybook code in the repository. Refer to individual components' usage in Storybook

Here's how you import the component:

import React from "react";

import { Callout } from "nsw-ds-react";

function Example() {
  return (
    <Callout title="Title of callout">
      <p>Description of callout</p>
    </Callout>
  );
}

API Update

(Coming soon)

License

MIT