1.0.0 • Published 3 years ago

react-psone v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

react-PSone

React version of PSone.css CSS framework.

Resources

PSone.css demo
PSone.css repository

Storybook

https://alessandropisu.github.io/react-PSone

Installation

yarn add react-psone
npm install --save react-psone

Usage

Add to your index.html the PSone.css stylesheet (currently available only from CDN).

<link
  rel="stylesheet"
  type="text/css"
  href="https://cdn.jsdelivr.net/gh/98mprice/PSone.css@master/PSone.min.css"
/>

Use the components inside your files.

import React from 'react';
import { Container, Button } from 'react-psone';

function Component() {
  return (
    <Container label="Example">
      <Button>Example</Button>
    </Container>
  );
}

License

MIT