diff options
| author | Jari <safijari@users.noreply.github.com> | 2023-08-24 19:30:34 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-24 17:30:34 -0700 |
| commit | 5a91054ba8d10d72b7838ae3677670f05a5757d3 (patch) | |
| tree | c893842756b17e9f910ef81147ba7d8afa64545d | |
| parent | ec1dfc791c3c9c6fa26e51b3997a0a0da9f090a5 (diff) | |
| download | decky-bazzite-buddy-5a91054ba8d10d72b7838ae3677670f05a5757d3.tar.gz decky-bazzite-buddy-5a91054ba8d10d72b7838ae3677670f05a5757d3.zip | |
pass serverAPI correctly to Content (#29)
| -rwxr-xr-x | src/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.tsx b/src/index.tsx index 735c2fd..a1f4bc5 100755 --- a/src/index.tsx +++ b/src/index.tsx @@ -21,7 +21,7 @@ import logo from "../assets/logo.png"; // right: number; // } -const Content: VFC<{ serverAPI: ServerAPI }> = ({}) => { +const Content: VFC<{ serverAPI: ServerAPI }> = ({serverAPI}) => { // const [result, setResult] = useState<number | undefined>(); // const onClick = async () => { |
