gonito-frontend/src/components/sections/HowTo.js

15 lines
321 B
JavaScript
Raw Normal View History

2022-07-29 10:23:07 +02:00
import React from 'react';
import {FlexColumn} from '../../utils/containers';
import {H2} from '../../utils/fonts';
2022-07-15 10:58:53 +02:00
const HowTo = () => {
return (
2022-07-15 13:45:51 +02:00
<FlexColumn padding='24px' as='section'>
<H2 as='h2'>
2022-07-15 10:58:53 +02:00
How to
</H2>
</FlexColumn>
);
2022-07-29 10:23:07 +02:00
};
2022-07-15 10:58:53 +02:00
export default HowTo;