mirror of
https://github.com/Blair-SGA-Dev-Team/blazerapp.git
synced 2024-11-14 09:21:16 -05:00
29 lines
387 B
JavaScript
29 lines
387 B
JavaScript
|
import React from 'react';
|
||
|
import {
|
||
|
SafeAreaView,
|
||
|
StyleSheet,
|
||
|
ScrollView,
|
||
|
View,
|
||
|
Text,
|
||
|
StatusBar,
|
||
|
} from 'react-native';
|
||
|
|
||
|
import {
|
||
|
Header,
|
||
|
LearnMoreLinks,
|
||
|
Colors,
|
||
|
DebugInstructions,
|
||
|
ReloadInstructions,
|
||
|
} from 'react-native/Libraries/NewAppScreen';
|
||
|
|
||
|
class Clubs extends React.Component {
|
||
|
render() {
|
||
|
return (
|
||
|
<View>
|
||
|
|
||
|
</View>
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default Clubs;
|