mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-14 04:54:16 +00:00
13 lines
280 B
JavaScript
13 lines
280 B
JavaScript
import React from "react"
|
|
|
|
export default (defaultValue) => {
|
|
const [visible, setVisible] = React.useState(defaultValue ?? false)
|
|
|
|
React.useEffect(() => {
|
|
setTimeout(() => {
|
|
setVisible(true)
|
|
}, 10)
|
|
}, [])
|
|
|
|
return [visible, setVisible]
|
|
} |