Skip to content

Commit 00f9e81

Browse files
authored
Merge pull request #20 from MFB-Technologies-Inc/19-misc-maintenance-tasks
19 misc maintenance tasks
2 parents 9c6467e + bf47ff2 commit 00f9e81

File tree

5 files changed

+14201
-727
lines changed

5 files changed

+14201
-727
lines changed

Dockerfile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
* Copyright 2023 MFB Technologies, Inc.
3-
*/
4-
51
FROM debian:bullseye
62
ARG USERNAME=vscode
73
RUN apt-get update

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ At the core of this package is `createAsyncRenderer`, which renders specific JSX
1717
```tsx
1818
function useMyData() {
1919
// Setup status state to reflect the state of your long running process
20-
const [status, setStatus] = useState<AsyncRequestStatus>(AsyncRequestStatus.INIT)
20+
const [status, setStatus] = useState<AsyncRequestStatus>(AsyncRequestStatusEnum.INIT)
2121
// Setup error state for any errors associated with your long running process
2222
const [error, setError] = useState<null | string>(null)
2323
// Setup data state for any data returned from your long running process

0 commit comments

Comments
 (0)