12 lines
267 B
TypeScript
12 lines
267 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>
|
|
)
|
|
}
|