* Fixed recording on RecordMp3 element to work (#17) * Completed reponsive window sizes on desktop, tablet, and mobile (#18) * Changed the location of sequelizerc file (#19)
This commit is contained in:
parent
79ff74fff0
commit
57fff6a5e2
2 changed files with 12 additions and 1 deletions
|
|
@ -16,7 +16,11 @@ import {
|
|||
AccordionDetails,
|
||||
useMediaQuery,
|
||||
} from '@mui/material';
|
||||
<<<<<<< HEAD
|
||||
import { styled } from '@mui/material/styles';
|
||||
=======
|
||||
import { styled, useTheme } from '@mui/material/styles';
|
||||
>>>>>>> main
|
||||
import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
|
||||
|
||||
import Dashboard from '../utils/Dashboard';
|
||||
|
|
|
|||
|
|
@ -8,7 +8,14 @@ import OrgUnit from './OrgUnit';
|
|||
function Organizations({ retrieveOrgs }) {
|
||||
const theme = useTheme();
|
||||
|
||||
const [orgs, setOrgs] = useState([]);
|
||||
const [orgs, setOrgs] = useState([
|
||||
{
|
||||
orgID: 12341234,
|
||||
orgName: 'Org',
|
||||
memberCount: 15,
|
||||
createdAt: 15,
|
||||
},
|
||||
]);
|
||||
|
||||
useEffect(() => {
|
||||
retrieveOrgs(setOrgs);
|
||||
|
|
|
|||
Reference in a new issue