You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wg-access-server/website/src/Store.ts

7 lines
163 B
TypeScript

import { store } from 'react-easy-state';
import { Device } from './sdk/devices_pb';
export const AppState = store({
devices: new Array<Device.AsObject>(),
});