chore: change eslint & prettier config

This commit is contained in:
Kim, Jimin 2023-06-29 15:53:51 +09:00
parent fc827d74fe
commit b43871c516
103 changed files with 3581 additions and 3543 deletions

View file

@ -4,16 +4,16 @@ import ThemeToggleButton from "./ThemeToggleButton"
import SearchButton from "./SearchButton"
const RightButtons = styled.div`
display: flex;
height: 100%;
margin-left: auto;
display: flex;
height: 100%;
margin-left: auto;
`
export default () => {
return (
<RightButtons>
<ThemeToggleButton />
<SearchButton />
</RightButtons>
)
return (
<RightButtons>
<ThemeToggleButton />
<SearchButton />
</RightButtons>
)
}