types: fixed typing

This commit is contained in:
원더 2021-01-05 21:41:06 +09:00
parent 33c3670cab
commit 0111a8d13c

View File

@ -8,7 +8,7 @@ const Container = ({ className, children }:ContainerProps): JSX.Element => {
interface ContainerProps {
className?: string
children: JSX.Element
children: JSX.Element | JSX.Element[]
}
export default Container