Browse Source

Basic splash screen component

pull/1/head
Tim Glasgow 2 years ago
parent
commit
82b6b6dc64
  1. 19
      squarenotsquare/components/Splash.js

19
squarenotsquare/components/Splash.js

@ -0,0 +1,19 @@
import { Component } from "react";
import { View } from "react-native";
class Splash extends Component {
constructor(props){
super(props)
this.state = {
}
}
render () {
return (
<View>
</View>
);
};
}
Loading…
Cancel
Save