diff options
author | Renard | 2019-10-01 01:15:54 -0300 |
---|---|---|
committer | Renard | 2019-10-01 01:15:54 -0300 |
commit | 9131d4ab9489c8a1abe05a701605c8348d6277a8 (patch) | |
tree | e7a721f9dbececda86ecc30d686f8de1ffe4426b /src/App.js | |
parent | 97bf3d24c8dd2343ba57d3e6bdd6d48b9eae3ff6 (diff) | |
download | bai-client-9131d4ab9489c8a1abe05a701605c8348d6277a8.tar.gz bai-client-9131d4ab9489c8a1abe05a701605c8348d6277a8.tar.xz bai-client-9131d4ab9489c8a1abe05a701605c8348d6277a8.zip |
Avances creación de hilos
Diffstat (limited to 'src/App.js')
-rw-r--r-- | src/App.js | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -21,6 +21,7 @@ import ThreadList from "./ThreadList"; import FAQ from "./FAQ"; import ChangeLogPage from "./ChangelogPage"; import SettingsModal from "./Settings"; +import NewThread from "./NewThread"; class App extends Component { constructor() { @@ -193,7 +194,11 @@ class App extends Component { /> <ChangeLogPage path="/changelog" nightMode={nightMode} /> <FAQ path="/faq" nightMode={nightMode} /> - + <NewThread + path="/new/:dir" + boardList={boardList} + nightMode={nightMode} + /> <NotFound default /> </Router> </Container> |