TypeScript 특성상 변수들을 상속시키는데 좀 복잡하다.
const ImgPicker = (props: {defaultList:string[]}) => {
const [imgList, setImgList] = useState<string[]>(props.defaultList);
// ...
}
const ImgPicker = (defaultList:string[]=[]) => {
const [imgList, setImgList] = useState<string[]>(defaultList);
// ...
}
props 내부에 =
로 바로 초기값을 지정할 수 없다..
A type literal property cannot have an initializer 에러가 뜨게 된다.
const ImgPicker = (props: {defaultList?:string[]}) => {
const [imgList, setImgList] = useState<string[]>(props.defaultList || []);
// ...
}
||
로 undifine를 제어하자.