mirror of
https://github.com/catppuccin/catppuccin
synced 2024-11-10 06:04:21 +00:00
18 lines
487 B
React
18 lines
487 B
React
|
import React, { useState } from 'react'
|
||
|
|
||
|
export default function () {
|
||
|
const [count, setCount] = useState(0)
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<main>
|
||
|
<h1>IntelliJ IDEA</h1>
|
||
|
<img border="0" height="12" src="images/hg.gif" width="18" />
|
||
|
What is IntelliJ IDEA? · Α
|
||
|
<button onClick={() => setCount(count + 1)}>Click me</button>
|
||
|
<div>{count}</div>
|
||
|
</main>
|
||
|
</>
|
||
|
)
|
||
|
}
|