react-antd-admin-panel
Version:
Easy prototyping admin panel using React and Antd
8 lines • 321 B
JavaScript
import React from "react";
import Button from "./Button";
import { Col } from 'antd';
const Menu = (props) => {
return (React.createElement(Col, null, props.model._fields.map((r, key) => React.createElement(Button, { key: key, model: r._fields[0] }))));
};
export default Menu;
//# sourceMappingURL=Menu.js.map