Files
contentstack-imagevault/remix/app/components/InvalidConfig.tsx
2024-03-26 11:53:20 +01:00

12 lines
268 B
TypeScript

export default function InvalidConfig() {
return (
<div>
<p>The configuration for this app is not correct!</p>
<p>
Go to the app configuration to fill in all fields in order for this app
to run correctly.
</p>
</div>
);
}