Failed to compile
Failed to compile ./src/App.js
Line 104: 'Grid' is not defined react/jsx-no-undef Line 106: 'Form' is not defined react/jsx-no-undef Line 111: 'Button' is not defined react/jsx-no-undef Line 119: 'Button' is not defined react/jsx-no-undef Line 121: 'Table' is not defined react/jsx-no-undef
Please help!
did you import React into your App?
import React, { Component } from 'react'; Is that it? I have followed the tutorial exactly.
Had the same issue. It works now after I added this import to app.js:
import {Table, Grid, Button, Form } from 'react-bootstrap';
Yes, same. I think this issue should be close @mcchan1
Also, for the ones that have recently tried the tutorial, you might also want to replace Grid with Component.
Also bootstrap version 4 won't work either.
Use this version instead:
npm install --save react-bootstrap bootstrap@3