/*
 * Copyright (c) Huawei Technologies Co., Ltd. 2025-2025. All rights reserved.
 */

import { ExampleStore } from './example';

export class RootStore {
    exampleStore: ExampleStore;
    constructor() {
        this.exampleStore = new ExampleStore();
    }
    resetStore = () => {
        this.exampleStore = new ExampleStore();
    };
};

export const store = new RootStore();