Blocking behaviour while typing fixed + added spinner (#6)

* Some README tweaks

* Next's staticProps blocking beheaviour while typing fixed + Added spinner

* Testing for previous fix

* Faker deprecational update
This commit is contained in:
David
2021-04-01 15:40:25 +02:00
committed by GitHub
parent e60be0663b
commit ea8c1bad57
10 changed files with 677 additions and 571 deletions

View File

@@ -5,7 +5,8 @@ export const initialState = {
target: "en",
query: "",
delayedQuery: "",
translation: ""
translation: "",
isLoading: true
}
type State = typeof initialState;
@@ -20,7 +21,7 @@ type Action = {
type: Actions.SET_FIELD,
payload: {
key: string,
value: string
value: any
}
} | {
type: Actions.SET_ALL,