summaryrefslogtreecommitdiff
path: root/web/src/root.js
diff options
context:
space:
mode:
authorAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-10-29 01:21:05 +0300
committerAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-10-29 01:21:05 +0300
commitfd4e0c3112d69061d495dfcf79f6ef62e3c6d5e6 (patch)
treefa55d6e879e3c6d85601d5c2486837f323ffd81d /web/src/root.js
parentb26bd10926447ed59cbf263aef087bb7c04f35eb (diff)
Начальный веб клиентHEADmaster
Diffstat (limited to 'web/src/root.js')
-rw-r--r--web/src/root.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/web/src/root.js b/web/src/root.js
new file mode 100644
index 0000000..ce1104b
--- /dev/null
+++ b/web/src/root.js
@@ -0,0 +1,10 @@
+import React from "react";
+import { Outlet } from "react-router";
+
+const Root = () => (
+ <main className="container-fluid">
+ <Outlet />
+ </main>
+)
+
+export default Root; \ No newline at end of file