import React from "react";
import { Row as AntdRow } from "antd";

const Row = (props) => {
  const { children, ...rest } = props;

  return <AntdRow {...rest}>{children}</AntdRow>;
};

export default Row;
