Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
RiskyMH committed Feb 12, 2025
1 parent 8d0024c commit 93458a2
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
"use client";
import { useState } from "react";

export default function REPLACE_ME_WITH_YOUR_REACT_COMPONENT_EXPORT() {
const [count, setCount] = useState(0);

return (
<div className="container">
<h1>Hello from Bun!</h1>
<button onClick={() => setCount(count + 1)}>Count: {count}</button>
</div>
);
}

export { REPLACE_ME_WITH_YOUR_REACT_COMPONENT_EXPORT };

0 comments on commit 93458a2

Please sign in to comment.