communitas 0.2.6

A diagnostic chat application for the P2P Foundation network
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from 'react'
import { Box } from '@mui/material'
import OrganizationDashboard from '../organization/OrganizationDashboard'

const OrganizationTab: React.FC = () => {
  return (
    <Box sx={{ height: '100%', display: 'flex', flexDirection: 'column' }}>
      <OrganizationDashboard />
    </Box>
  )
}

export default OrganizationTab