본문 바로가기
React

useState를 사용한 배열 set

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

const { width, items } = selectConfig;
    const changeSelectConfig = (value: string) => {
        setSelectConfig({ ...selectConfig, id });
    };

'React' 카테고리의 다른 글

SVG 파일을 컴포넌트로 만들기  (0) 2020.10.06
[React 스터디] 6 : 고차 컴포넌트  (0) 2020.09.28
객체를 사용한 style 작성  (0) 2020.09.22
[React 스터디] 5 : Ref 전달하기  (0) 2020.09.20
[React 스터디] 4: Context  (0) 2020.09.03

댓글