I'm using my animation in a react app and I used the following code to add my animation
render={data => (
<OuterContainer>
<Container>
<NameHeader>{data.site.siteMetadata.title}
<FlareComponent width="200" height="200" animationName="green" file="light.flr" />
</NameHeader>
<Description>{data.site.siteMetadata.subtitle}</Description>
</Container>
</OuterContainer>
)}
I checked the Component with my React Developer tool and this is what I found in my FlareComponent

The console showed me the following error
SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data FlareReact.js:9534
Here is my React file for a reference.
You can also find the flare files(I tried it with both Binary and JSON) in the components directory of the repo
I'm using my animation in a react app and I used the following code to add my animation
I checked the Component with my React Developer tool and this is what I found in my FlareComponent

The console showed me the following error
Here is my React file for a reference.
You can also find the flare files(I tried it with both Binary and JSON) in the
componentsdirectory of the repo