forked from FuelupEducationIndia/fuelupeducation-rn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.js
40 lines (37 loc) · 1.39 KB
/
dashboard.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import React, { Component } from 'react'
import { SafeAreaView,ScrollView,StatusBar,StyleSheet,Text,useColorScheme,View} from 'react-native'
import Header from './dashboard-component/Header'
import Attendance from './dashboard-component/Attend'
import Course from './dashboard-component/Course'
import Exam from './dashboard-component/Exam'
import Assignments from './dashboard-component/Assignment'
import Discussion from './dashboard-component/Discussion'
import Certificate from './dashboard-component/Certificate'
import Notebook from './dashboard-component/Notebook'
import Upcoming from './dashboard-component/Upcoming'
import Following from './dashboard-component/Following'
import Footer from './dashboard-component/Footer'
export default class Dashboard extends Component {
render() {
return (
<View style={{flex:1}}>
<ScrollView
scrollEventThrottle={16}
nestedScrollEnabled = {true}>
<Header/>
<Attendance/>
<Course/>
<Exam/>
<Assignments/>
<Discussion/>
<Certificate/>
<Notebook/>
<Upcoming/>
<Following/>
</ScrollView>
<Footer/>
</View>
)
}
}
const styles = StyleSheet.create({})