Notices for events and sync errors handled

This commit is contained in:
Leoh 2021-10-15 10:30:25 +05:30
parent a60eade0ae
commit 98a15c0c9e
4 changed files with 33 additions and 9 deletions

View file

@ -3,6 +3,6 @@ import App from "./view/App";
export default function ReactView(props: any){
return(
<App username={props.userID} apiToken={props.tokenAPI}/>
<App username={props.userID} apiToken={props.tokenAPI} plugin={props.plugin}/>
)
}