aboutsummaryrefslogtreecommitdiff
path: root/src/App.js
diff options
context:
space:
mode:
authorLibravatar Renard 2019-10-01 01:15:54 -0300
committerLibravatar Renard 2019-10-01 01:15:54 -0300
commit9131d4ab9489c8a1abe05a701605c8348d6277a8 (patch)
treee7a721f9dbececda86ecc30d686f8de1ffe4426b /src/App.js
parent97bf3d24c8dd2343ba57d3e6bdd6d48b9eae3ff6 (diff)
downloadbai-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.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/App.js b/src/App.js
index c3631e2..9fffc93 100644
--- a/src/App.js
+++ b/src/App.js
@@ -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>