Created: 6/16/2025, 7:44:35 AM
Modified: 6/16/2025, 7:44:35 AM
This is some bold and italics text.
This is a list in markdown:
Here's a React component:
export default function Counter() {
const [count, setCount] = useState(0);
return (
<div>
<p>You clicked {count} times</p>
<button onClick={() => setCount(count + 1)}>
Click me
</button>
</div>
);
}
This is some text.
This text is red, but inverted.