akjfal

9/26 본문

하루의 이슈

9/26

akjfal 2019. 10. 30. 22:03
const handleBackground = (background) => {
  switch (background) {
    case 'aaa':
	backgroundcolor: ${({ backgroundcolor }) => handleBackground(background)};
    <StyledButton
      color={color}
    >
      {children}
    </StyledButton>

스타일 지정법

  const { getRootProps, getInputProps } = useDropzone({
    accept: 'image/*',
    onDrop: (acceptedFiles) => {
      setFiles(acceptedFiles.map((file) => Object.assign(file, {
        preview: URL.createObjectURL(file),
      })));
      setNewRepresentImg(acceptedFiles);
      setState({ img: true });
    },
  });

사진 넘기는법 -> setNewRepresentImg가 중요!

사진 넘기고 파일 구조의 대대적인 변경이 있었다.

'하루의 이슈' 카테고리의 다른 글

10/15  (0) 2019.10.30
10/14  (0) 2019.10.30
9/25  (0) 2019.10.30
9/23  (0) 2019.10.30
9/18  (0) 2019.10.30
Comments