14 lines
591 B
JavaScript
14 lines
591 B
JavaScript
import * as React from "react";
|
|
|
|
function About() {
|
|
return ( <>
|
|
<div>
|
|
<h3>DITSWBS is mobile first client application with a cloud backend:</h3>
|
|
<p>Goal of the application is to separate concerns. Administration has its own portal that manages users, permissions, and project initiation.</p>
|
|
<p>Templates are static, open, currated, and JSON based. </p>
|
|
<p>Main program that client uses helps project manager, coordinator, user or guest to interract with project to break down work packages which come from Templates.</p>
|
|
</div>
|
|
</> );
|
|
}
|
|
|
|
export default About; |