mirror of
https://github.com/ansible/awx.git
synced 2026-01-14 03:10:42 -03:30
16 lines
280 B
JavaScript
16 lines
280 B
JavaScript
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>
|
|
);
|
|
}
|