mirror of
https://github.com/windwp/nvim-ts-autotag.git
synced 2025-01-06 07:09:20 -06:00
22 lines
366 B
TypeScript
22 lines
366 B
TypeScript
|
|
import React, { useCallback, useEffect } from 'react'
|
|
|
|
const SamplePage: React.FC = () => {
|
|
const [state, setstate] = useState<string>(initialState)
|
|
|
|
useEffect(() => {
|
|
},[])
|
|
|
|
return (
|
|
<div className="h-full">
|
|
<aaa className="btn btn-success px-3" type="button" onClick={()}> </aaa>
|
|
|
|
<div></div>
|
|
|
|
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default SamplePage
|