UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

15 lines (11 loc) 293 B
import * as uuid from 'uuid' export interface LoggerState { runID: string } const initialLoggerState = { runID: uuid(), } // currently there are no logger actions export const loggerReducer = (state: LoggerState = initialLoggerState, action: null): LoggerState => state