16 lines
513 B
JavaScript
16 lines
513 B
JavaScript
import * as React from "react";
|
|
|
|
function Home() {
|
|
return ( <>
|
|
<div>
|
|
<h2>Welcome to DITSWBS application</h2>
|
|
</div>
|
|
<div>
|
|
<h3>Please use administrative portal to manage users and projects</h3>
|
|
<h3>Dashboard is where you will coordinate your project tasks and work breakdown</h3>
|
|
<p>Templates that will play an important part in growth of DITSWBS are under development. This section will contain description of each curated template.</p>
|
|
</div>
|
|
</>);
|
|
}
|
|
|
|
export default Home; |