This commit is contained in:
Halit Aksoy 2022-07-15 17:45:03 +03:00
parent a8e98995d9
commit c38d8c60d5

20
src/components/Row.tsx Normal file
View File

@ -0,0 +1,20 @@
import * as React from 'react';
import { FunctionComponent } from 'react';
const Row: FunctionComponent = ({children}) => {
return (
<div className="row">
{children}
<style jsx>{`
.row {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
`}</style>
</div>
);
}
export default Row;