This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
- Add a 'Text' widget with the content below (set 'mode' to 'html'). | |
- Make sure to enable JS parsing for this widget by setting the 'disable_sanitize_html' property to 'true' in your grafana.ini. | |
- For more detailed info, check out fi. https://www.worldometers.info/coronavirus/ | |
- STAY SAFE FOLKS! | |
--> | |
<center> | |
<div style="font-size: 20px">🦠<span id="confirmed"/></div> | |
<div style="font-size: 16px">💀<span id="deaths" /><span id="deathrate" style="color: #555; padding-left: 8px"/></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export * from "./expo-nativescript-adapter.common"; | |
export const NativeModulesProxy = {}; | |
const provider = EXModuleRegistryProvider.new(); | |
const moduleRegistry = provider.moduleRegistryForExperienceId( | |
"@sjchmiela/test" | |
); | |
const exportedModules = moduleRegistry.getAllExportedModules(); | |
for (let i = 0; i < exportedModules.count; i++) { |