“Agregar bootstrap a Gatsby” Código de respuesta

Agregar bootstrap a Gatsby

npm install --save react-bootstrap
npm install --save bootstrap
Dark Donkey

Instale Bootstrap en Gatsbyjs

// npm i bootstrap jquery popper.js

// On gatsby-browser.js
import "bootstrap/dist/css/bootstrap.min.css";
import "jquery/dist/jquery.min.js";
import "popper.js/dist/popper.min";
import "bootstrap/dist/js/bootstrap.min.js";
Fair Flatworm

Agregar bootstrap a Gatsby

import React from 'react';
import '../path_to/bootstrap.min.css';

const MyComponent = () => (
    <div>
        <p>This contains a button which uses the bootstrap.css</p>
        <button class="btn btn-primary">Click me</button>
    </div>
);
Dark Donkey

Agregar bootstrap a Gatsby

import React from 'react';
import { Button } from 'react-bootstrap';

const MyComponent = () => (
      <div>
        <p>This contains a button which is exported by react-bootstrap</p>
        <Button variant="primary">Primary</Button>
    </div>
);
Dark Donkey

Respuestas similares a “Agregar bootstrap a Gatsby”

Preguntas similares a “Agregar bootstrap a Gatsby”

Más respuestas relacionadas con “Agregar bootstrap a Gatsby” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código