16 lines
620 B
TypeScript
16 lines
620 B
TypeScript
import React from "react";
|
|
import { StyleSheet, View } from "react-native";
|
|
import { line_chart_two_y_data } from "../../test/mock/charts/mock-data";
|
|
import ChartContainer from "../component/charts/container/chart-container";
|
|
import LineGraph from "../component/charts/line-graph/line-graph";
|
|
|
|
// Session Mock - can be used for session summary screen using a query handler component
|
|
// BarGraph component using mocked data currently
|
|
export default function SessionScreen() {
|
|
return (
|
|
<View style={StyleSheet.absoluteFill}>
|
|
<ChartContainer data={line_chart_two_y_data} ChartComponent={LineGraph} />
|
|
</View>
|
|
);
|
|
}
|