본문 바로가기
javascript/TypeScript

배열 type 명시하기

by 바나냥 2020. 9. 22.
const [config, setConfig] = useState<{
        id: string;
        width: string;
        items: Array[];
    }>({
        id: 1
        width: '100px',
        items: array,
    });

댓글