Conversation
ysh4296
reviewed
Jul 13, 2022
| import { CacheProvider, EmotionCache } from '@emotion/react'; | ||
| import theme from '@theme/light'; | ||
| import createEmotionCache from 'emotion_cache/createEmotionCache'; | ||
| // Redux |
| import createEmotionCache from 'emotion_cache/createEmotionCache'; | ||
| // Redux | ||
| import { Provider } from 'react-redux'; | ||
| import { store } from '../src/store/store'; |
Collaborator
There was a problem hiding this comment.
@store 통해 불러오도록 해주세요! 폴더 이름도 좀더 구분 가능한걸로 바꾸어주실 수 있나요?
pages/_app.tsx
Outdated
| <CacheProvider value={emotionCache}> | ||
| <ThemeProvider theme={theme}> | ||
| {/* CssBaseline kickstart an elegant, consistent, and simple baseline to build upon. */} | ||
| <CssBaseline /> |
Collaborator
There was a problem hiding this comment.
여기도 주석이 남아있긴 했네요 이거 제거해주세요!
src/store/store.ts
Outdated
| @@ -0,0 +1,29 @@ | |||
| import { configureStore } from '@reduxjs/toolkit'; | |||
| // import userSlice from './slices/userSlice'; | |||
src/pages/HomePage.tsx
Outdated
| @@ -0,0 +1,8 @@ | |||
| import React from 'react'; | |||
| import { Button, Typography } from '@mui/material'; | |||
|
|
||
| const StyledBox = styled(Box)<BoxProps>(({ theme }) => ({ | ||
| marginTop: '4px', | ||
| marginTop: '4px',// 1 하면 딱 좋더라 |
ysh4296
approved these changes
Jul 27, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Feature