일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- hook
- React 18 Nextjs
- react
- getUTCDate
- React API 참고서
- Nextjs
- Babel
- background: url
- Programmers
- React18
- background setInterval
- next13 head
- react-helmet
- React 고급 안내서
- React 고급안내서
- Next13
- Javascript
- background setttimeout
- React 공식문서
- RTK Query
- Render Props
- Nextjs React 18
- background tab
- CSS
- codingtest
- notFound()
- context
- 고급안내서
- react hook
- React 18
Archives
- Today
- Total
akjfal
9/24 본문
import React from 'react';
import { StyledAppbar, StyledToolbar } from '../../styles';
export default function Basic({ Icon }) {
return (
<StyledAppbar>
<StyledToolbar>
<Icon />
</StyledToolbar>
</StyledAppbar>
);
}
이런식으로 appbar에 icon넣기를 정식으로 실행
import React from 'react';
import Typography from '@material-ui/core/Typography';
import { StyledAppbar, StyledToolbar } from '../../styles';
export default function Basic({
Icon, appstring, Button1, Button2,
}) {
return (
<StyledAppbar>
<StyledToolbar>
<Icon />
<Typography>
{appstring}
</Typography>
<Button1 />
<Button2 />
</StyledToolbar>
</StyledAppbar>
);
}
Button2이 null을 넣을 수 있다면 어떻게 해야 할까…
<></>로 해결
버튼도 스트링 넣기 식으로 변경
validateDOMNesting(...): <button> cannot appear as a descendant of <button>
https://github.com/reactstrap/reactstrap/issues/979
iconbutton안에 한꺼번에 넣어놓느것이 잘못되었나해서 plusbutton을 분리 해봤다 -> 삐삐~~ 정답이 아니므니다~
위에서부터 재검사 들어갑니다
찾았다 -> 버튼아래 버튼을 둘 수 없다!
Comments