Skip to content

Commit

Permalink
fixed reactstrap error
Browse files Browse the repository at this point in the history
  • Loading branch information
oshimish committed Mar 29, 2023
1 parent c84a6e5 commit 114ea27
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
5 changes: 2 additions & 3 deletions app/package.json
Expand Up @@ -16,7 +16,7 @@
"react-dom": "^18.2.0",
"react-router-dom": "^6.9.0",
"react-scripts": "5.0.1",
"reactstrap": "^9.1.6",
"reactstrap": "9.1.0",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
Expand All @@ -26,8 +26,7 @@
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"devDependencies": {
},
"devDependencies": {},
"eslintConfig": {
"extends": [
"react-app",
Expand Down
9 changes: 5 additions & 4 deletions app/src/App.tsx
Expand Up @@ -2,14 +2,15 @@ import { Routes, Route } from "react-router-dom";
import 'bootstrap/dist/css/bootstrap.min.css';
import './App.css';

import Map from "./components/MapComponent";
import NavbarComponent from "./components/NavbarComponent";
import ItemsComponent from "./components/ItemsComponent";

import {
Row,
Col
} from "reactstrap";

import Map from "./components/MapComponent";
import NavbarComponent from "./components/NavbarComponent";
import ItemsComponent from "./components/ItemsComponent";

import FetchDataComponent from "./components/FetchDataComponent";

function App() {
Expand Down
8 changes: 4 additions & 4 deletions app/yarn.lock
Expand Up @@ -7840,10 +7840,10 @@ react@^18.2.0:
dependencies:
loose-envify "^1.1.0"

reactstrap@^9.1.6:
version "9.1.7"
resolved "https://registry.yarnpkg.com/reactstrap/-/reactstrap-9.1.7.tgz#ac19912889601f02812936fe60188ae789591fb2"
integrity sha512-w5/0MLXaCkkqBwpUKD97x5ohZlaxnhd2+TbooCKVAHKgDacVCKulJneL65sdV3L7XOgWTxMF0gsT8AUBFPfK8w==
reactstrap@9.1.0:
version "9.1.0"
resolved "https://registry.yarnpkg.com/reactstrap/-/reactstrap-9.1.0.tgz#500c29ee8d8ac110f0414eedb7ae1e96d768a5f1"
integrity sha512-Yrrd5eFVmMYonc1GCyxQzBuIJ3wcpmA3TGGyGfpqaanuSI821rhkmsZDjdo1/l2wfMVqi5XZbmg6DuaJLhu0uQ==
dependencies:
"@babel/runtime" "^7.12.5"
"@popperjs/core" "^2.6.0"
Expand Down

0 comments on commit 114ea27

Please sign in to comment.