Skip to content

Commit

Permalink
reverse guestbook
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerc99 committed Aug 18, 2024
1 parent f1e0b1b commit c756b39
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion website/events/gray-area/gray-area.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,13 @@ function PlayhtmlToolBox() {
}}
>
<Timer />
{/* <div id="scratchpad" style={{
display: "flex",
flexDirection: "column",
gap: "1em",
}}>
</div> */}
</div>
</div>
);
Expand Down Expand Up @@ -531,7 +538,7 @@ const Guestbook = withSharedState(
</button>
</div>
<hr />
{data.map((entry, i) => (
{data.reverse().map((entry, i) => (
<div
key={i}
className="guestbook-entry"
Expand Down

0 comments on commit c756b39

Please sign in to comment.