import renderFormRows from '../lib/render-rows'; import { rows } from './config'; import Background from '@/Components/Layout/Background'; import { min } from '@/styles/mq'; import styled from 'styled-components'; const Wrapper = styled(Background)` padding: 4px 10px; ${min('tablet')} { min-height: 790px; } ${min('laptop')} { padding: 4px 18px 10px; } `; export default function Settings() { return {renderFormRows(rows)}; }