userscript...

This commit is contained in:
Gabe Yuan
2023-08-05 23:56:16 +08:00
parent cc04e817da
commit 063d7c9ff0
2 changed files with 53 additions and 1 deletions

16
src/views/Action/index.js Normal file
View File

@@ -0,0 +1,16 @@
import Box from "@mui/material/Box";
import Fab from "@mui/material/Fab";
import AddIcon from "@mui/icons-material/Add";
import ThemeProvider from "../../hooks/Theme";
export default function Action() {
return (
<ThemeProvider>
<Box style={{ position: "fixed", top: 16, right: 16, zIndex: 10001 }}>
<Fab color="primary">
<AddIcon />
</Fab>
</Box>
</ThemeProvider>
);
}