2024-02-03 20:23:31 -07:00
|
|
|
import React from "react";
|
2024-02-07 17:33:27 -08:00
|
|
|
import { StyleSheet, View } from "react-native";
|
2024-02-13 11:50:06 -08:00
|
|
|
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";
|
2024-01-31 15:55:33 -08:00
|
|
|
|
|
|
|
// Session Mock - can be used for session summary screen using a query handler component
|
|
|
|
// BarGraph component using mocked data currently
|
|
|
|
export default function SessionScreen() {
|
2024-02-03 20:23:31 -07:00
|
|
|
return (
|
|
|
|
<View style={StyleSheet.absoluteFill}>
|
2024-02-13 11:50:06 -08:00
|
|
|
<ChartContainer data={line_chart_two_y_data} ChartComponent={LineGraph} />
|
2024-02-03 20:23:31 -07:00
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|