Attempt to implement settings syncing

This commit is contained in:
ransurf 2021-10-10 21:08:13 -07:00
parent b53b8758ba
commit 9824d2ba31
10 changed files with 118 additions and 10 deletions

View file

@ -1,6 +1,8 @@
import * as React from "react";
import App from "./view/App";
export const ReactView = () => {
return <App />;
};
export default function ReactView(props: any){
return(
<App username={props.userID} apiToken={props.tokenAPI}/>
)
}