Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Commit

Permalink
removed obsolete navigation element from scenes
Browse files Browse the repository at this point in the history
  • Loading branch information
AllBitsEqual committed Jun 7, 2019
1 parent 04aa38b commit 3be6b52
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
4 changes: 1 addition & 3 deletions src/scenes/SceneHome.js
@@ -1,9 +1,7 @@
import React from 'react'
import { StyleSheet, Text, View} from "react-native"

const SceneHome = (props) => {
const { navigation } = props

const SceneHome = () => {
return (
<View style={styles.container}>
<Text>Hello World!</Text>
Expand Down
4 changes: 1 addition & 3 deletions src/scenes/SceneSettings.js
@@ -1,9 +1,7 @@
import React from 'react'
import { StyleSheet, Text, View} from "react-native"

const SceneSettings = (props) => {
const { navigation } = props

const SceneSettings = () => {
return (
<View style={styles.container}>
<Text>Scene Settings</Text>
Expand Down
4 changes: 1 addition & 3 deletions src/scenes/SceneStart.js
@@ -1,9 +1,7 @@
import React from 'react'
import { StyleSheet, Text, View} from "react-native"

const SceneStart = (props) => {
const { navigation } = props

const SceneStart = () => {
return (
<View style={styles.container}>
<Text>SceneStart</Text>
Expand Down

0 comments on commit 3be6b52

Please sign in to comment.