Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
render() {
LayoutAnimation.easeInEaseOut();
return (
<header>
<content>
{this.renderRoute()}
</content>
);
}
}</header>
render = () => {
const { settings, children } = this.props;
const customVariables = settings.componentColors[settings.themeName];
const theme = getUserTheme(variables, customVariables);
return (
{children}
);
};
}