From b092096450014f7a6d14d876ba94175089c76e75 Mon Sep 17 00:00:00 2001 From: moay Date: Thu, 5 Dec 2019 09:40:52 +0100 Subject: [PATCH] Fixes readme This line in the readme triggers a warning when running tests with jest. It should be updated to the new, correct import as promoted by expo. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ed0b337d..f5bc82f9 100644 --- a/README.md +++ b/README.md @@ -263,7 +263,7 @@ import Svg, { } from 'react-native-svg'; /* Use this if you are using Expo -import { Svg } from 'expo'; +import * as Svg from 'react-native-svg'; const { Circle, Rect } = Svg; */