mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-14 11:43:50 +01:00
25 lines
805 B
TypeScript
25 lines
805 B
TypeScript
|
import React from "react";
|
||
|
import Typography from "@mui/material/Typography";
|
||
|
import { Link } from "@mui/material";
|
||
|
|
||
|
export function ThemeCollaborate(): React.ReactElement {
|
||
|
return (
|
||
|
<>
|
||
|
<Typography sx={{ my: 1 }}>
|
||
|
If you've created a theme that you believe should be added in game's theme browser, feel free to{" "}
|
||
|
<Link href="https://github.com/danielyxie/bitburner/tree/dev/src/Themes/README.md" target="_blank">
|
||
|
create a pull request
|
||
|
</Link>
|
||
|
.
|
||
|
</Typography>
|
||
|
<Typography sx={{ my: 1 }}>
|
||
|
Head over to the{" "}
|
||
|
<Link href="https://discord.com/channels/415207508303544321/921991895230611466" target="_blank">
|
||
|
theme-sharing
|
||
|
</Link>{" "}
|
||
|
discord channel for more.
|
||
|
</Typography>
|
||
|
</>
|
||
|
);
|
||
|
}
|