@netu-si/netu-react-dsf-components
v1.0.36
Published
React Component Library Using the GOV-CY DSF Design System
Readme
netu-react-dsf-components
An implementation of the GOV-CY Design System in React
Usage
yarn install @netu-si/netu-react-dsf-componentsimport { DSFButton } from 'netu-react-dsf-components';
const MyComponent = ({ title }) => (
<div>
<h1>{title}</h1>
<DSFButton id="submitBtn">Submit</DSFButton>
</div>
);See the Storybook for examples of all available components.
Release Process
To publish a new version of the package:
- Make your changes and commit them
- Build the project to ensure everything works:
npm run build - Commit your changes if the build is successful
- Bump the version (patch, minor, or major):
npm version patch - Publish to npm:
npm publish - Commit the version bump changes
