2024-02-03 20:23:31 -07:00
|
|
|
import React from "react";
|
2024-02-03 20:30:00 -07:00
|
|
|
import { StyleSheet, View } from "react-native";
|
2024-02-03 20:23:31 -07:00
|
|
|
import BarGraph from "../component/charts/bar-graph/bar-graph";
|
|
|
|
import { graph_data_two_measures } from "../mock/charts/mock-data";
|
2024-01-31 16:55:33 -07: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}>
|
|
|
|
<BarGraph data={graph_data_two_measures} />
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|