Use tabler-react-typescript, updated frontend deps

This commit is contained in:
Jamie Curnow
2021-07-04 16:11:55 +10:00
parent 0f6498603e
commit 4fbb354d54
16 changed files with 419 additions and 332 deletions

View File

@@ -13,8 +13,9 @@ export interface HealthContextType {
}
const initalValue = null;
const HealthContext =
React.createContext<HealthContextType | null>(initalValue);
const HealthContext = React.createContext<HealthContextType | null>(
initalValue,
);
interface Props {
children: ReactNode;