Skip to content

Instantly share code, notes, and snippets.

View Ian-GL's full-sized avatar
⚗️

Ian González Ian-GL

⚗️
View GitHub Profile
@JCMais
JCMais / react-native-svg.js
Last active August 1, 2023 00:12
React Native SVG mock to be used with jest, put in __mocks__ dir in the src dir.
// @flow
// https://github.com/FormidableLabs/react-native-svg-mock
import React from 'react';
const createComponent = function(name: string) {
return class extends React.Component {
// overwrite the displayName, since this is a class created dynamically
static displayName = name;