2023-02-13 12:52:00 +08:00

11 lines
228 B
JavaScript

import { LitState } from "../../utility/lit-state.js"
class CardState extends LitState {
static get stateVars() {
return {
more_id: undefined
};
}
}
export const cardState = new CardState();