Skip to content

Instantly share code, notes, and snippets.

@gHashTag
Created November 3, 2017 18:25
Show Gist options
  • Select an option

  • Save gHashTag/302f281a35abdeb95e5f93d757599cc1 to your computer and use it in GitHub Desktop.

Select an option

Save gHashTag/302f281a35abdeb95e5f93d757599cc1 to your computer and use it in GitHub Desktop.
import React from 'react'
import {
WebView,
} from 'react-native'
const Ticket = () => {
return (
<TimePad />
)
}
const TimePad = () => {
return (
<WebView
source={require('./timepad.html')}
/>
);
}
export default Ticket
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment