Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
Switch to react-bootstrap for Bootstrap 3 support
Browse files Browse the repository at this point in the history
  • Loading branch information
jamgregory committed Jun 12, 2020
1 parent 134710a commit 2dc0f8f
Show file tree
Hide file tree
Showing 8 changed files with 194 additions and 57 deletions.
237 changes: 187 additions & 50 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"dependencies": {
"prop-types": "^15.7.2",
"react": "^16.13.1",
"reactstrap": "^8.4.1"
"react-bootstrap": "0.33.1"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
Expand Down
2 changes: 1 addition & 1 deletion src/Editable.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import TextField from "./components/TextField";
import TextArea from "./components/TextArea";
import Select from "./components/Select";
import Date from "./components/Date";
import {Button, Form, PopoverHeader, PopoverBody, Popover, Spinner, FormText} from "reactstrap";
import {Button, Form, PopoverHeader, PopoverBody, Popover, Spinner, FormText} from "react-boostrap";
import File from "./components/File";

const fontAwesomeStyle = {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Date.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react"
import {Input} from "reactstrap";
import {Input} from "react-bootstrap";

export default class Date extends React.Component {
constructor(props) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/File.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react"
import {CustomInput} from "reactstrap";
import {CustomInput} from "react-bootstrap";

export default class File extends React.Component {
constructor(props) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Select.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react"
import {Input} from "reactstrap";
import {Input} from "react-bootstrap";

export default class TextField extends React.Component {
constructor(props){
Expand Down
2 changes: 1 addition & 1 deletion src/components/TextArea.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react"
import {Input} from "reactstrap";
import {Input} from "react-bootstrap";

export default class TextArea extends React.Component {
constructor(props){
Expand Down
2 changes: 1 addition & 1 deletion src/components/TextField.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react"
import {Input} from "reactstrap";
import {Input} from "react-bootstrap";

export default class TextField extends React.Component {
constructor(props){
Expand Down

0 comments on commit 2dc0f8f

Please sign in to comment.