Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
8:58
Browse files Browse the repository at this point in the history
  • Loading branch information
Stravinsken committed Aug 26, 2024
1 parent 5bf98d1 commit bb06e24
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion crescendo-web/src/pages/Board.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from "react";
import React, { useState } from "react";
import "./Board.css";
import { useNavigate } from "react-router-dom";

Expand All @@ -23,13 +23,20 @@ function Toggles() {
);
}

function newPage() {
const [title, setTitle] = useState("");
const [content, setContent] = useState("");
const [list, setList] = useState([]);
}

function Board() {
return (
<div>
<div className="box"></div>
<div className="image-container">
<img src={require("../image/var.png")} width="440px" alt="var" />
</div>

<Toggles />
</div>
);
Expand Down

0 comments on commit bb06e24

Please sign in to comment.