7 lines
155 B
JavaScript
7 lines
155 B
JavaScript
import { register } from '../utils/adopter.js'
|
|
import Element from './Element.js'
|
|
|
|
export default class Shape extends Element {}
|
|
|
|
register(Shape, 'Shape')
|