Skip to content

Commit

Permalink
Merge pull request #1 from game-master-campaign-manager/CombatDrawer
Browse files Browse the repository at this point in the history
v0.1.2
  • Loading branch information
gvorbeck committed Apr 23, 2022
2 parents ddd6406 + d4c5dae commit 8a8eef0
Show file tree
Hide file tree
Showing 15 changed files with 15,772 additions and 97 deletions.
36 changes: 17 additions & 19 deletions src/components/adventure-page-layout.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
import React from 'react';
import { graphql } from 'gatsby';
import {
Box,
Card,
Divider,
List,
ListItem,
ListItemText,
Paper,
Table,
TableBody,
TableCell,
TableContainer,
TableHead,
TablePagination,
TableRow,
TableSortLabel,
Typography,
} from '@mui/material';
import Box from '@mui/material/Box';
import Card from '@mui/material/Card';
import Divider from '@mui/material/Divider';
import List from '@mui/material/List';
import ListItem from '@mui/material/ListItem';
import ListItemText from '@mui/material/ListItemText';
import Paper from '@mui/material/Paper';
import Table from '@mui/material/Table';
import TableBody from '@mui/material/TableBody';
import TableCell from '@mui/material/TableCell';
import TableContainer from '@mui/material/TableContainer';
import TableHead from '@mui/material/TableHead';
import TablePagination from '@mui/material/TablePagination';
import TableRow from '@mui/material/TableRow';
import TableSortLabel from '@mui/material/TableSortLabel';
import Typography from '@mui/material/Typography';
import { Link, ListItemButton } from 'gatsby-theme-material-ui';
import { visuallyHidden } from '@mui/utils';
import { Feed, LocationOn, EmojiPeople } from '@mui/icons-material/';
Expand All @@ -29,7 +27,7 @@ import {

function AdventurePageLayout({ data }) {
return (
<Layout title={data.mdx.frontmatter.title}>
<Layout title={data.mdx.frontmatter.title} hideDrawerIcon>
<Box>
<Paper
sx={{
Expand Down
Loading

0 comments on commit 8a8eef0

Please sign in to comment.