zmc
2023-12-22 c7e4dd9bd50cf6e6426598753c796ec1a27f333f
1
2
3
4
5
6
7
8
9
10
 
import { store } from './singleton';
 
export function updateVariable() {
  store.variable = 'World';
}
 
export function getVariable() {
  return store.variable;
}