diff --git a/src/components/Row.tsx b/src/components/Row.tsx new file mode 100644 index 0000000..bc0db42 --- /dev/null +++ b/src/components/Row.tsx @@ -0,0 +1,20 @@ +import * as React from 'react'; +import { FunctionComponent } from 'react'; + +const Row: FunctionComponent = ({children}) => { + return ( +
+ {children} + +
+ ); +} + +export default Row; \ No newline at end of file