We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb4173c commit 179b34eCopy full SHA for 179b34e
src/App.tsx
@@ -211,8 +211,8 @@ function App() {
211
return child.pid;
212
}
213
214
- return (
215
- <main className="flex flex-col items-center justify-center min-h-screen gap-5">
+ const Main = () => (
+ <main className="flex flex-col flex-grow items-center justify-center gap-5">
216
<h1 className="text-3xl font-extrabold">Zero Knowledge Network</h1>
217
218
<img
@@ -273,6 +273,12 @@ function App() {
273
)}
274
</main>
275
);
276
+
277
+ return (
278
+ <div className="flex flex-col min-h-screen">
279
+ <Main />
280
+ </div>
281
+ );
282
283
284
export default App;
0 commit comments