ExpDurationContext.tsx 240 Bytes
Newer Older
1
2
3
4
5
6
7
import React from 'react';
export const ExpDurationContext = React.createContext({
    maxExecDuration: 0,
    execDuration: 0,
    // eslint-disable-next-line @typescript-eslint/no-empty-function
    updateOverviewPage: (): void => {}
});