mirror of
https://github.com/guilhermewerner/tomasulo-simulator
synced 2025-06-15 13:24:20 +00:00
Create build.js
This commit is contained in:
25
pages/build.js
Normal file
25
pages/build.js
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
import Head from 'next/head'
|
||||||
|
import { useState } from 'react';
|
||||||
|
|
||||||
|
export default function Home() {
|
||||||
|
const [instructionStatus, setInstructionStatus] = useState([]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Head>
|
||||||
|
<title>Tomasulo</title>
|
||||||
|
<meta name="description" content="Generated by create next app" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<link rel="icon" href="/favicon.ico" />
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
|
||||||
|
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
|
||||||
|
crossorigin="anonymous"
|
||||||
|
/>
|
||||||
|
</Head>
|
||||||
|
<main>
|
||||||
|
</main>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
Reference in New Issue
Block a user