From c48f2521fed30e288b944328fa17a71e7974fd3b Mon Sep 17 00:00:00 2001 From: Werner Date: Wed, 7 Jun 2023 10:54:16 -0300 Subject: [PATCH] Add step button --- pages/index.js | 34 +++++++++++++++++++++++++++------- 1 file changed, 27 insertions(+), 7 deletions(-) diff --git a/pages/index.js b/pages/index.js index 67bd85f..6f31a10 100644 --- a/pages/index.js +++ b/pages/index.js @@ -1,17 +1,32 @@ import Head from 'next/head' import Image from 'next/image' import Table from 'react-bootstrap/Table' -import Container from 'react-bootstrap/Container'; -import Nav from 'react-bootstrap/Nav'; +import Container from 'react-bootstrap/Container' +import Nav from 'react-bootstrap/Nav' import Navbar from 'react-bootstrap/Navbar'; -import NavDropdown from 'react-bootstrap/NavDropdown'; -import { useState } from 'react' +import NavDropdown from 'react-bootstrap/NavDropdown' +import Row from 'react-bootstrap/Row' +import Col from 'react-bootstrap/Col' +import { useState } from 'react'; +import Button from 'react-bootstrap/Button'; export default function Home() { const [instructionStatus, setInstructionStatus] = useState([]); const [reservationStations, setReservationStations] = useState([]); const [registerStatus, setRegisterStatus] = useState([]); + function issueInstruction() { + + } + + function executeInstruction() { + + } + + function writeInstruction() { + + } + return ( <> @@ -33,9 +48,14 @@ export default function Home() {
-
-

Instruction Status

-
+ + +

Instruction Status

+ + + + +