import React from 'react' import { createVirtualBox } from '@formily/react-schema-renderer' import { Card } from 'antd' import { CardProps } from 'antd/lib/card' import styled from 'styled-components' export const FormBlock = createVirtualBox( 'block', styled(({ children, className, ...props }) => { return ( {children} ) })` margin-bottom: 10px !important; &.ant-card { border: none; box-shadow: none; } ` ) export default FormBlock