Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | import styled from 'styled-components'; import MenuModal from './MenuModal'; const StyledTitle = styled.h1` font-size: 4rem; text-align: center; `; const StyledDescription = styled.p` font-size: 1.6rem; text-align: center; `; const Menu = () => { return ( <div> <StyledTitle>だし</StyledTitle> <StyledDescription>jsysの物品管理システム。アルファベット表記は「dashi」。</StyledDescription> <MenuModal /> </div> ); }; export default Menu; |