POC of rendering custom HTML

This commit is contained in:
Elio Struyf
2023-02-24 18:21:12 +01:00
parent 75af200108
commit 7e398d206a
41 changed files with 275 additions and 196 deletions
@@ -22,7 +22,7 @@ export const SyncButton: React.FunctionComponent<ISyncButtonProps> = (
};
const messageListener = (message: MessageEvent<EventData<any>>) => {
const { command, data } = message.data;
const { command, payload } = message.data;
if (command === GeneralCommands.toWebview.gitSyncingStart) {
setIsSyncing(true);