npm.io
2.1.25 • Published 2 years ago

@glif/react-components

Licence
MIT
Version
2.1.25
Deps
30
Size
2.1 MB
Vulns
22
Weekly
0
Stars
2

@glif/react-components

Shared @glif/react-components!

npm install @glif/react-components

Usage

import {
  StandardBox
} from '@glif/react-components'

function Component () {
  return (
    <StandardBox>Hello World</StandardBox>
  )
}

Storybooks

Clone the project locally and run:

npm i
npm run storybook

FAQ

Multiple React warnings when linking

Peer dependencies should be resolved to a single instance by your bundler. In Next.js, you can add the following field to your next.config.js config object:

const path = require('path')
const webpack = (config, { buildId, dev, isServer, defaultLoaders, webpack }) => {
  config.resolve.alias = {
    ...config.resolve.alias,
    react: path.resolve('./node_modules/react'),
    'react-dom': path.resolve('./node_modules/react-dom'),
    next: path.resolve('./node_modules/next'),
    'styled-components': path.resolve('./node_modules/styled-components')
  }

  return config;
}

module.exports = {
  webpack
}

License

MIT