update dashboard text

This commit is contained in:
2021-08-09 11:42:23 +05:30
parent 1199891829
commit 2af2e4cdc2
38 changed files with 100 additions and 78 deletions

View File

@ -1,12 +1,35 @@
import React, { lazy } from 'react'
import CIcon from '@coreui/icons-react'
import {
CCol,
CFormGroup,
CInput,
CInputFile,
CLabel,
CButton,
CCard,
CCardHeader,
CCardBody,
CCardFooter,
} from '@coreui/react'
const Dashboard = () => {
return (
<>
<div >
<CCard class="bg-info">
<CCardBody >
<div class="text-white text-center card bg-info">
<div class="card-body">
<blockquote class="card-bodyquote">
<h1>FBS Web app</h1>
</blockquote>
</div>
</div>
</CCardBody>
</CCard>
</div>
)
</>
)
}
export default Dashboard