15 lines
269 B
TypeScript
15 lines
269 B
TypeScript
import React from 'react'
|
|
|
|
const BeforeLogin: React.FC = () => {
|
|
return (
|
|
<div>
|
|
<p>
|
|
<b>Welcome to your dashboard!</b>
|
|
{' This is where site admins will log in to manage your website.'}
|
|
</p>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default BeforeLogin
|