Skip to content

Instantly share code, notes, and snippets.

View gustavoisensee's full-sized avatar
🎧
Making some code!

Gustavo Isensee gustavoisensee

🎧
Making some code!
View GitHub Profile
// This is a jest-mock for react-native-svg lib
import React from 'react';
import { View } from 'react-native';
export const Circle = () => <View />;
export const Ellipse = () => <View />;
export const G = () => <View />;
export const Text = () => <View />;
export const TSpan = () => <View />;