index.js 216 Bytes
Newer Older
zhengxiaokui committed
1 2 3 4 5 6 7 8 9 10
import Letp from './Letp'
import Ledgrp from './Ledgrp'
export default class Leds {
    constructor() {
        this.data = {
            Ledgrp: new Ledgrp().data,
            Letp: new Letp().data
        }
    }
}