- Published on
Using Bulma with React
- Authors
- Name
- Yair Mark
- @yairmark
I have used Bulma with React in the past but I did not properly note the steps I used to get it working. Getting it working in React is actually super simple:
- Install the npm dependency: Using
npm install bulma --save
- Import
bulma.css
: In yourApp.js
component add the following line
import 'bulma/css/bulma.css';
...
You know have the bare minimum to be able to use Bulma. This is the case as Bulma is a purely CSS framework. Once you have imported the css
in your App you simply use it by applying the appropriate classes as detailed in the documentation.