From cbe1ca72068ad1b279d1e78a4ae0e2fc8780ecc8 Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Wed, 14 Jul 2021 17:27:11 +0200 Subject: added random graph with colored edged --- app/screens/graph/graph-screen.tsx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 app/screens/graph/graph-screen.tsx (limited to 'app/screens') diff --git a/app/screens/graph/graph-screen.tsx b/app/screens/graph/graph-screen.tsx new file mode 100644 index 0000000..4ba2ee0 --- /dev/null +++ b/app/screens/graph/graph-screen.tsx @@ -0,0 +1,28 @@ +import React from "react" +import { observer } from "mobx-react-lite" +import { ViewStyle } from "react-native" +import { Screen, Text } from "../../components" +// import { useNavigation } from "@react-navigation/native" +// import { useStores } from "../../models" +import { color } from "../../theme" + +import { Graph } from "../../components" + +const ROOT: ViewStyle = { + backgroundColor: color.palette.black, + flex: 1, +} + +export const GraphScreen = observer(function GraphScreen() { + // Pull in one of our MST stores + // const { someStore, anotherStore } = useStores() + + // Pull in navigation via hook + // const navigation = useNavigation() + return ( + + + + + ) +}) -- cgit v1.2.3