
Hi there,
I have this error when i paste example code;
"react": "16.8.3",
"react-native": "0.59.9",
"react-vivus": "0.0.2",
"vivus": "^0.4.4"
I wrote my code below;
import ReactVivus from 'react-vivus';
import homePhone from './src/svg/untitled.svg';
....
render() {
return(
<ReactVivus
id="foo"
option={{
file: homePhone,
type: 'oneByOne',
animTimingFunction: 'EASE',
duration: 250,
onReady: console.log
}}
style={{ height: '300px', width: '250px' }}
callback={console.log}
/>
)
}
How can i fix this issue ?
Thanks.