add FormRow component; rename unwrapped components with underscore

This commit is contained in:
Keith Grant
2019-03-29 13:50:17 -04:00
parent 2002d48bcc
commit 40b88da9dd
7 changed files with 31 additions and 16 deletions

View File

@@ -0,0 +1,15 @@
import React from 'react';
export default function FormRow ({ children }) {
return (
<div
style={{
display: 'grid',
gridGap: '20px',
gridTemplateColumns: 'repeat(auto-fit, minmax(300px, 1fr))'
}}
>
{children}
</div>
);
}