Image.js 290 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 import React from "react"; import Styled from "styled-components"; const Image = Styled.div` width: 100%; margin: 20px 0px; display: flex; justify-content: center; `; export default () => { return ( <Image> <img src="" alt="sample"></img> </Image> ); };