diff options
author | Renard | 2019-09-12 18:00:03 -0300 |
---|---|---|
committer | Renard | 2019-09-12 18:00:03 -0300 |
commit | 5756921f22c0f7ac6133df21973bf0b15d56cc61 (patch) | |
tree | 22cbb93e3d380d97efa300f261f8eab350e4bba7 /src/App.js | |
parent | 04eb1ecac5e6c817a45f23a3f7d55d48c40f0d0f (diff) | |
download | bai-client-5756921f22c0f7ac6133df21973bf0b15d56cc61.tar.gz bai-client-5756921f22c0f7ac6133df21973bf0b15d56cc61.tar.xz bai-client-5756921f22c0f7ac6133df21973bf0b15d56cc61.zip |
Linting
Diffstat (limited to 'src/App.js')
-rw-r--r-- | src/App.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,10 +1,10 @@ import React, { Component } from 'react'; import { render } from "react-dom"; -import { Router, Link, Match } from "@reach/router"; +import { Router, Link } from "@reach/router"; import 'fomantic-ui-css/semantic.css'; import "./App.css"; -import { Dropdown, Menu, Icon, Loader, Container, Grid } from "semantic-ui-react"; +import { Dropdown, Menu, Icon, Loader, Container } from "semantic-ui-react"; import Home from "./Home"; import BBSThread from "./BBSThread"; import Board from "./Board"; @@ -43,7 +43,7 @@ class App extends Component { } const { boardList } = this.state; - const pathList = boardList.map(board => "/" + board.dir) + //const pathList = boardList.map(board => "/" + board.dir) return ( <Container> <Menu inverted> |