Add missing collon in README sample code
Add miss ','
This commit is contained in:
16
README.md
16
README.md
@ -152,13 +152,9 @@ your index should look something like:
|
|||||||
`src/index.tsx`
|
`src/index.tsx`
|
||||||
|
|
||||||
```tsx
|
```tsx
|
||||||
import { App } from "./<wherever>/App";
|
import { App } from "./<wherever>/App";
|
||||||
import {
|
import { KcApp, defaultKcProps, getKcContext } from "keycloakify";
|
||||||
KcApp,
|
import { css } from "tss-react/@emotion/css";
|
||||||
defaultKcProps,
|
|
||||||
getKcContext
|
|
||||||
} from "keycloakify";
|
|
||||||
import { css } from "tss-react/@emotion/css";
|
|
||||||
|
|
||||||
const { kcContext } = getKcContext();
|
const { kcContext } = getKcContext();
|
||||||
|
|
||||||
@ -169,10 +165,10 @@ reactDom.render(
|
|||||||
kcContext={kcContext}
|
kcContext={kcContext}
|
||||||
{...{
|
{...{
|
||||||
...defaultKcProps,
|
...defaultKcProps,
|
||||||
"kcHeaderWrapperClass": myClassName
|
"kcHeaderWrapperClass": myClassName,
|
||||||
}}
|
}}
|
||||||
/>
|
/>,
|
||||||
document.getElementById("root")
|
document.getElementById("root"),
|
||||||
);
|
);
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user