Render fetched shots
This commit is contained in:
14
component/display-shot.tsx
Normal file
14
component/display-shot.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Text, View } from "react-native";
|
||||
|
||||
function DisplayShots({ data }) {
|
||||
const renderShots = (shots) => {
|
||||
return shots.map((shot) => (
|
||||
<View key={shot.id}>
|
||||
<Text>{shot.id}</Text>
|
||||
</View>
|
||||
));
|
||||
};
|
||||
return renderShots(data);
|
||||
}
|
||||
|
||||
export default DisplayShots;
|
16
component/shot.tsx
Normal file
16
component/shot.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import DisplayShots from "./display-shot";
|
||||
import withQueryHandling from "./with-query-handling";
|
||||
import { GET_SHOTS } from "../graphql/query";
|
||||
|
||||
const ShotsContainer = withQueryHandling({
|
||||
WrappedComponent: DisplayShots,
|
||||
query: GET_SHOTS,
|
||||
dataKey: "getShots",
|
||||
queryOptions: {
|
||||
variables: {
|
||||
includeCueObjectAngle: true,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
export default ShotsContainer;
|
Reference in New Issue
Block a user