import React from "react";
import styles from "./index.less";
import { Drawer, List, Avatar, Divider, Col, Row } from "antd";
const pStyle = {
fontSize: 16,
lineHeight: "24px",
display: "block",
marginBottom: 16
};
const DescriptionItem = ({ title, content }) => (
);
class App extends React.Component {
state = { visible: false };
showDrawer = () => {
this.setState({
visible: true
});
};
onClose = () => {
this.setState({
visible: false
});
};
render() {
return (
(
View Profile
]}
>
}
title={{item.name}}
description="Progresser XTech"
/>
)}
/>
User Profile
Personal
Company
Lin} />
Contacts
github.com/ant-design/ant-design/
}
/>
);
}
}
export default () => (
);