Skip to content
This repository was archived by the owner on Mar 8, 2023. It is now read-only.
/ buffet Public archive

Buffet.js — React Components Library made with styled-components

Notifications You must be signed in to change notification settings

strapi/buffet

Folders and files

NameName
Last commit message
Last commit date
Aug 26, 2021
Feb 3, 2020
Jul 19, 2021
Aug 10, 2020
Jul 19, 2021
Jul 19, 2021
Sep 26, 2019
Jul 30, 2020
Jun 23, 2020
Aug 4, 2020
Jul 30, 2020
Sep 26, 2019
Aug 7, 2020
Sep 27, 2019
Aug 11, 2020
Sep 27, 2019
Aug 4, 2020
Jul 19, 2021
Jul 19, 2021
Jul 19, 2021

Repository files navigation



React Components Library made with styled-components

Monthly download on NPM Travis Build Status Strapi on Slack

Getting Started

Installation

Using yarn

yarn add @buffetjs/core @buffetjs/hooks  @buffetjs/styles
# Install the required dependencies
yarn add lodash prop-types react react-dom react-router-dom styled-components

or npm

npm install @buffetjs/core @buffetjs/styles @buffetjs/hooks --save
# Install the required dependencies
npm install lodash prop-types react react-dom react-router-dom styled-components --save

Example

Import buffet.js into your project as follows:

import React from 'react';
import {
  Enumeration,
} from '@buffetjs/core';

const Page = () => {
  const [state, setState] = React.useState('milk');

  return (
    <header>
      <p>Title</p>
    </header>
    <section>
      <Enumeration
        name="enumeration"
        onChange={({ target: { value } }) => setState(value)}
        options={[
          {
            value: 'flour',
            label: 'Flour',
          },
          {
            value: 'milk',
            label: 'Milk',
          },
          {
            value: 'butter',
            label: 'Butter',
          },
        ]}
        value={state}
      />
    </section>
    <footer>
      Made with love by Strapi
    </footer>
  );
}

export default Page;

Documentation

See the documentation at buffetjs.io/storybook for more informations.