Skip to content

Instantly share code, notes, and snippets.

@stevenselcuk
Created August 6, 2020 09:46
Show Gist options
  • Save stevenselcuk/af2e519c203a47397aed071bd6743e9b to your computer and use it in GitHub Desktop.
Save stevenselcuk/af2e519c203a47397aed071bd6743e9b to your computer and use it in GitHub Desktop.
import React from 'react';
import { AppRegistry, Text, View } from "react-native";
const TodayWidget = () => (
<View>
<Text>Hello Today Widget!</Text>
</View>
);
AppRegistry.registerComponent('TodayWidgetExtension', () => TodayWidget);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment