mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-05-06 00:35:09 -04:00
feat: cargo project at root
This commit is contained in:
parent
aa0c0623ca
commit
709a2820c4
313 changed files with 1 additions and 740 deletions
28
src-gui/src/renderer/components/pages/help/HelpPage.tsx
Normal file
28
src-gui/src/renderer/components/pages/help/HelpPage.tsx
Normal file
|
@ -0,0 +1,28 @@
|
|||
import { Box, makeStyles } from '@material-ui/core';
|
||||
import ContactInfoBox from './ContactInfoBox';
|
||||
import FeedbackInfoBox from './FeedbackInfoBox';
|
||||
import DonateInfoBox from './DonateInfoBox';
|
||||
import TorInfoBox from './TorInfoBox';
|
||||
import RpcControlBox from './RpcControlBox';
|
||||
|
||||
const useStyles = makeStyles((theme) => ({
|
||||
outer: {
|
||||
display: 'flex',
|
||||
gap: theme.spacing(2),
|
||||
flexDirection: 'column',
|
||||
},
|
||||
}));
|
||||
|
||||
export default function HelpPage() {
|
||||
const classes = useStyles();
|
||||
|
||||
return (
|
||||
<Box className={classes.outer}>
|
||||
<RpcControlBox />
|
||||
<TorInfoBox />
|
||||
<FeedbackInfoBox />
|
||||
<ContactInfoBox />
|
||||
<DonateInfoBox />
|
||||
</Box>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue