File size: 187 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 | import styled from 'styled-components/macro';
export const Title = styled.h1`
/* this comment should be removed */
font-size: 1.5em;
text-align: center;
color: palevioletred;
`;
|
1e92f2d | 1 2 3 4 5 6 7 8 9 | import styled from 'styled-components/macro';
export const Title = styled.h1`
/* this comment should be removed */
font-size: 1.5em;
text-align: center;
color: palevioletred;
`;
|