zmc
2023-10-12 ef10dea2a96d68a00a9a316f8594e0636103a6ab
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;
}