From 1daa28b462c05cb555ce3bde1fc7abe8d12ea648 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caio=20Eduardo=20Ramos=20Ar=C3=A3es?= Date: Thu, 8 Jun 2023 15:58:28 -0300 Subject: [PATCH] Begin to add instructions input fields --- pages/build.js | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) diff --git a/pages/build.js b/pages/build.js index d215248..60662ad 100644 --- a/pages/build.js +++ b/pages/build.js @@ -1,5 +1,7 @@ import Head from 'next/head' +import Form from 'react-bootstrap/Form'; import { useState } from 'react'; +import { Container } from 'react-bootstrap'; export default function Home() { const [instructionStatus, setInstructionStatus] = useState([]); @@ -19,6 +21,94 @@ export default function Home() { />
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
)