css cleanup
This commit is contained in:
@@ -44,8 +44,6 @@ const App = () => {
|
||||
<>
|
||||
<Suspense>{props.children}</Suspense>
|
||||
<Profile />
|
||||
|
||||
{/* Version */}
|
||||
<span class="fixed br m-2 font-mono text-xs">
|
||||
{"v" + pkg.version}
|
||||
</span>
|
||||
@@ -54,11 +52,11 @@ const App = () => {
|
||||
>
|
||||
<Route path="/" component={lazy(() => import("./routes/index"))} />
|
||||
<Route
|
||||
path="/:tableKey"
|
||||
path="/t/:tableKey"
|
||||
component={lazy(() => import("./routes/[table]"))}
|
||||
/>
|
||||
</Router>
|
||||
);
|
||||
};
|
||||
|
||||
render(App, document.getElementById("app")!);
|
||||
render(App, document.getElementsByTagName("body")[0]);
|
||||
|
||||
Reference in New Issue
Block a user