반응형
styled.ts
import styled from "styled-components";
import Box from "@mui/material/Box";
export const MyBox = styled(Box)({
marginTop: 100,
display: "flex",
flexDirection: "column",
alignItems: "center",
});
index.tsx
import * as S from "./styled";
export const Sample = () => {
return (
<S.MyBox>
<TextField
autoComplete="given-name"
name="userEmail"
required
fullWidth
id="userEmail"
label="Email Address"
autoFocus
/>
<Button fullWidth variant="contained">
Sign In
</Button>
</S.MyBox>
);
};
반응형
'[====== Development ======] > React' 카테고리의 다른 글
CSS Flex에 대한 설명 (0) | 2022.08.14 |
---|---|
[React] 반응형으로 브라우즈 크기가 작아지면 SideBar가 사라지도록 하는 코드 (0) | 2022.08.11 |
[Meterial UI] Stack , Button (0) | 2022.08.10 |
component를 array로 정의 (0) | 2022.08.10 |
[React] Meterial UI - Nested List Items (0) | 2022.08.10 |