Jangwoohyeok123 / Economic-Context

A website where you can track economic indicators and create your own investment diary, building your personal economic context.
https://economic-context.vercel.app
0 stars 0 forks source link

ThemeProvider 으로 반응형 작업 #157

Open aajy opened 4 weeks ago

aajy commented 4 weeks ago

목적

전체 컴포넌트에서 반응형 테마에 관련된 변수를 재사용한다.

내용

function App() { return (

); }

// Component.js import styled from 'styled-components';

const Component= styled.div @media (max-width: ${props => props.theme.breakpoints.tablet}) { ... } ;


## 참고사항
Jangwoohyeok123 commented 2 weeks ago

적용이 필요합니다. 다음주 작업에 포함시켜야할듯

image