Skip to content

Commit

Permalink
Added ids for Tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
sergesoroka committed Mar 27, 2024
1 parent 95654ea commit a988a3c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/StartScreenComp/StartScreenComp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,14 @@ export default function StartScreenComp({}) {
</div>
<div className="tabsWrap">
<p
id="Finalized"
onClick={() => setMode("Finalized")}
className={mode == "Finalized" ? "tabActive" : "tab"}
>
Finalized Blueprints
</p>
<p
id="Draft"
onClick={() => setMode("Draft")}
className={mode == "Draft" ? "tabActive" : "tab"}
>
Expand Down

0 comments on commit a988a3c

Please sign in to comment.