better messages, axios client

This commit is contained in:
Aria Moradi
2021-03-07 16:27:13 +03:30
parent 954084bd82
commit 7157e07328
7 changed files with 100 additions and 53 deletions

View File

@@ -18,7 +18,7 @@ export default function Extensions() {
}, []);
if (extensions.length === 0) {
return <h3>wait</h3>;
return <h3>loading...</h3>;
}
return <>{extensions.map((it) => <ExtensionCard extension={it} />)}</>;
}