15 lines
504 B
TypeScript
15 lines
504 B
TypeScript
import React from "react";
|
|
import { StyleSheet, View } from "react-native";
|
|
import BarGraph from "../component/charts/bar-graph/bar-graph";
|
|
import { graph_data_two_measures } from "../mock/charts/mock-data";
|
|
|
|
// 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}>
|
|
<BarGraph data={graph_data_two_measures} />
|
|
</View>
|
|
);
|
|
}
|