personal.jsx 232 B

1234567891011121314
  1. import React from 'react';
  2. import {Input } from 'antd';
  3. const Content = React.createClass({
  4. render() {
  5. return (
  6. <div>
  7. <Input />
  8. </div>
  9. )
  10. }
  11. });
  12. export default Content;