mirror of
https://github.com/lainbo/component-party.git
synced 2026-04-05 13:09:03 +08:00
12 lines
210 B
JavaScript
12 lines
210 B
JavaScript
import { useEffect, useState } from "react";
|
|
|
|
export default function Name() {
|
|
const [name, setName] = useState("John");
|
|
|
|
useEffect(() => {
|
|
setName("Jane");
|
|
}, []);
|
|
|
|
return <h1>Hello {name}</h1>;
|
|
}
|