일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- React 공식문서
- background setInterval
- CSS
- react-helmet
- React 18
- RTK Query
- react
- notFound()
- React 고급안내서
- Nextjs
- context
- background tab
- hook
- React18
- React API 참고서
- codingtest
- Babel
- Nextjs React 18
- background: url
- react hook
- next13 head
- background setttimeout
- React 고급 안내서
- getUTCDate
- Javascript
- React 18 Nextjs
- Programmers
- Render Props
- Next13
- 고급안내서
Archives
- Today
- Total
akjfal
9/26 본문
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가 중요!
사진 넘기고 파일 구조의 대대적인 변경이 있었다.
Comments