rt-graphic-component/components/Section/Section.js
2023-12-19 16:30:41 +08:00

10 lines
154 B
JavaScript

import { JlGraphic } from 'jl-graphic';
class Section extends JlGraphic {
doRepaint() {
console.log('repaint');
}
}
export { Section };