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
14
15
16
import {
  Box,
  Typography,
} from '@mui/material'




export default function WebsiteBuilder() {
  return (
    <Box sx={{ display: 'flex', height: '100vh' }}>
      <Typography variant="h4">Website Builder</Typography>
      <Typography variant="body2">UI components will be added here</Typography>
    </Box>
  )
}