1. import {Tip} from 'uskin';
    2. import React from 'react';
    3. const props = {
    4. title: '逍遥游',
    5. content: '北冥有鱼,其名为鲲,
    6. 鲲之大,一锅炖不下。
    7. 化而为鸟,其名为鹏,
    8. 鹏之大,需要两个烧烤架,
    9. 一个蜜汁,一个麻辣。',
    10. width: 320,
    11. type: 'info',
    12. showIcon: true
    13. };
    14. ReactDOM.render(
    15. <Tip ...props />,
    16. mountNode);