File size: 129 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 |
import styled from 'styled-components';
const H1 = styled.h1`
font-size: 2em;
margin-bottom: 0.25em;
`;
export default H1;
|
1e92f2d |
1 2 3 4 5 6 7 8 9 |
import styled from 'styled-components';
const H1 = styled.h1`
font-size: 2em;
margin-bottom: 0.25em;
`;
export default H1;
|