/* * @Author: your name * @Date: 2021-12-16 14:20:08 * @Description: * @FilePath: /zl-business/src/components/Unit/wrap/Wrap.tsx */ import React from 'react'; import './style.scss'; export interface Iwrap { children: any; wrapStyle?: React.CSSProperties; key?: string | number; } function Wrap(props: Iwrap) { return (
{props.children}
); } export default Wrap;