Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const { name } = this.state;
return (
<div>
<h1 id="1">
Hello {name}
</h1>
<p>component name: {getSetting("name")}</p>
<p>component version: {getSetting("version")}</p>
<p>registry baseUrl: {getSetting("baseUrl")}</p>
<p>component staticPath: {getSetting("staticPath")}</p>
</div>
);
}
}
export default withSettingProvider(withDataProvider(App));