Add missing collon in README sample code

Add miss ','
This commit is contained in:
Hongquan Zou 2021-12-09 19:07:07 +08:00 committed by garronej
parent 5c46ecc0ed
commit 99a5efe36c

View File

@ -152,13 +152,9 @@ your index should look something like:
`src/index.tsx`
```tsx
import { App } from "./<wherever>/App";
import {
KcApp,
defaultKcProps,
getKcContext
} from "keycloakify";
import { css } from "tss-react/@emotion/css";
import { App } from "./<wherever>/App";
import { KcApp, defaultKcProps, getKcContext } from "keycloakify";
import { css } from "tss-react/@emotion/css";
const { kcContext } = getKcContext();
@ -169,10 +165,10 @@ reactDom.render(
kcContext={kcContext}
{...{
...defaultKcProps,
"kcHeaderWrapperClass": myClassName
"kcHeaderWrapperClass": myClassName,
}}
/>
document.getElementById("root")
/>,
document.getElementById("root"),
);
```