3

Can anybody recommed a simple UI-Library for React? Can't evaluate them because I've never used one.
And please no Bootstrap-stuff, I have seen too much of it.

Comments
  • 3
    Bulma is a nice css framework with no included js, I’m just in the process of writing components for them, although I’m using preact
  • 1
  • 2
    ant design
  • 2
    Semantic UI
  • 2
    material-ui? you can add custom styles to it
  • 2
    @mishaor is it easy to use? Because i looked in the docs and it looked pretty complex for me. But haven't tried it out to be honest.
  • 1
  • 2
    @pixelwiese i looked at thematerial-design-components yesterday, they use the Bem css style with the double dashes, never liked that and rapidly decided it wasn’t worth the effort
  • 3
    @pixelwiese pretty much yeah, it just uses a lot of helper components (like Typography) so that's why it looks complex. You need a basic React project, then just install @material-ui/core, typeface-roboto (if you don't want to use a CDN) and @material-ui/icons (if you want SVG icons like those in examples). Then just add some imports, change the components and you got a Material Design styled website. Want to change colors? Wrap all of your elements in App/index.jsx with MuiThemeProvider, create a theme and specify it in MuiThemeProvider's props, then look how your website's color changes.
  • 2
    @pixelwiese dropping a pin to read later
  • 2
    I'm currently using BlueprintJS, and definitely recommend it.
  • 3
    I've only used Bulma and Material UI both seems to be good.
Add Comment