7 lines
126 B
TypeScript
7 lines
126 B
TypeScript
|
|
import { SLElem } from "./slelem";
|
||
|
|
|
||
|
|
export class SLCard extends SLElem {
|
||
|
|
constructor() {
|
||
|
|
super("sl-card");
|
||
|
|
}
|
||
|
|
}
|