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를 제어하자.