16 lines
293 B
TypeScript
16 lines
293 B
TypeScript
import { Theme } from "@Component/Theme/Theme";
|
|
import { Component } from "react";
|
|
import "./LabelList.scss";
|
|
|
|
interface ILabelListProps {
|
|
|
|
}
|
|
|
|
class LabelList extends Component<ILabelListProps> {
|
|
|
|
public render() {
|
|
return <Theme>LabelList</Theme>
|
|
}
|
|
}
|
|
|
|
export { LabelList }; |