10 lines
154 B
JavaScript
10 lines
154 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Title = styled.h1`
|
|
font-size: 1.5em;
|
|
text-align: center;
|
|
color: palevioletred;
|
|
`;
|
|
|
|
export { Title };
|