1. import {Tooltip} from 'uskin';
    2. const a = {
    3. b: 1
    4. };
    5. ReactDOM.render(
    6. <div>
    7. <Tooltip shape="top-left" content="top left tooltip" />
    8. <Tooltip shape="top" content="top tooltip" />
    9. <Tooltip shape="top-right" content="top right tooltip" />
    10. <Tooltip shape="right-top" content="right top tooltip" />
    11. <Tooltip shape="right" content="right tooltip" />
    12. <Tooltip shape="right-bottom" content="right bottom tooltip" />
    13. <Tooltip shape="bottom-right" content="bottom right tooltip" />
    14. <Tooltip shape="bottom" content="bottom tooltip" />
    15. <Tooltip shape="bottom-left" content="bottom left tooltip" />
    16. <Tooltip shape="left-bottom" content="left bottom tooltip" />
    17. <Tooltip shape="left" content="left tooltip" />
    18. <Tooltip shape="left-top" content="left top tooltip" />
    19. </div>,
    20. mountNode);