Blame view

src/Divider/Divider.js 273 Bytes
3a3ecabe   Imshann   init
1
2
3
4
  import template from "./Divider.html";
  import style from "antd/lib/divider/style/index.css";
  
  class Divider {
3a3ecabe   Imshann   init
5
6
7
8
9
10
      
      useModules = ["esNgAntd"];
  
      constructor() {
          esNgAntd.createStyle("ant-divider", style);
      }
ca196a72   Imshann   优化
11
12
13
14
  
      render() {
          return template;
      }
3a3ecabe   Imshann   init
15
  }