We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92e4388 commit 7add91eCopy full SHA for 7add91e
translate/src/App.tsx
@@ -14,6 +14,8 @@ import {
14
IconButton,
15
Typography,
16
TextField,
17
+ FormControlLabel,
18
+ Switch,
19
} from "@mui/material";
20
import MenuIcon from "@mui/icons-material/Menu";
21
import { useTheme } from "@mui/material/styles";
@@ -167,6 +169,19 @@ function App() {
167
169
Copy
168
170
</Button>
171
</div>
172
+ <div style={{ display: "flex", justifyContent: "flex-end" }}>
173
+ <FormControlLabel
174
+ control={
175
+ <Switch
176
+ onChange={(e) => {
177
+ navigator.clipboard.writeText(targetText);
178
+ }}
179
+ />
180
+ }
181
+ label="ページ番号あり"
182
+ labelPlacement="start"
183
184
+ </div>
185
<div style={{ display: "flex", justifyContent: "flex-end" }}>
186
<Button
187
onClick={() => {
0 commit comments