Skip to content

Instantly share code, notes, and snippets.

View chrisdhanaraj's full-sized avatar

Chris Dhanaraj chrisdhanaraj

View GitHub Profile
@chrisdhanaraj
chrisdhanaraj / example.tsx
Created September 21, 2022 17:02
Example
const TableWrapper = ({
someProperty,
otherProperty
}) => {
const [data, loading] = useQuery({
variables: {
someProperty,
otherProperty
}
});