-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
plumbed in the getting started/help control in the navbar (#835)
- Loading branch information
1 parent
1ad6e23
commit 8a0a6f5
Showing
2 changed files
with
50 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import {modalStyle} from "./styling/theme.ts"; | ||
import {Box, Grid2, Modal, Typography} from "@mui/material"; | ||
|
||
interface GettingStartedModalProps { | ||
close: () => void; | ||
isOpen: boolean; | ||
} | ||
|
||
const GettingStartedModal = ({ close, isOpen }: GettingStartedModalProps) => { | ||
return ( | ||
<Modal open={isOpen} onClose={close}> | ||
<Box sx={{ ...modalStyle }}> | ||
<Grid2 container sx={{ flexGrow: 1, p: 1 }} alignItems="center"> | ||
<Typography variant="h5"><strong>Getting Started with zrok</strong></Typography> | ||
</Grid2> | ||
</Box> | ||
</Modal> | ||
) | ||
} | ||
|
||
export default GettingStartedModal; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters