mirror of
https://github.com/swc-project/swc.git
synced 2025-01-08 06:52:36 +03:00
7 lines
150 B
TypeScript
7 lines
150 B
TypeScript
|
function Bar() {
|
||
|
const [foo, setFoo] = useState(0);
|
||
|
React.useEffect(() => {
|
||
|
// @refresh reset
|
||
|
});
|
||
|
return <h1>{ foo } < /h1>;
|
||
|
}
|