--- Alias: ["Dashboard"] Date: 2021-11-20 DocType: "Note" ChildrenType: ["Task", "Note"] Hierarchy: "Root" TimeStamp: location: CollapseMetaTable: Yes --- Parent:: [[Life Admin]] ---   ```button name Create Note type append template action NewFile id CreateNote ``` ^button-DailytrackerNewTask ```button name Save type command action Save current file id Save ``` ^button-DailytrackerSave   ```jsx:
```   ```jsx: const C = props=>{ const ref = useRef(); useEffect(()=>{ (async ()=>{ let iframe = ref.current; //replace outdated api keys const response =await fetch("https://unpkg.com/vue-weather-widget@3.0.2/dist/js/vue-weather-widget.js"); let js = await response.text(); js = js.replaceAll("c3bb8aa0a56b21122dea6a2a8ada70c8", "7f9c71310f410847fceb9537a83f3882"); const dataUri = 'data:text/javascript;charset=utf-8,' + encodeURIComponent(js); var html = `
`; iframe.contentWindow.document.open(); iframe.contentWindow.document.write(html); iframe.contentWindow.document.close(); })() }) return