[TS] Typecheck skipping Src
This commit is contained in:
parent
e1fe6c2f3b
commit
8c15dd6752
41 changed files with 43 additions and 2 deletions
16
src/components/server-options/NameOption.tsx
Normal file
16
src/components/server-options/NameOption.tsx
Normal file
|
@ -0,0 +1,16 @@
|
|||
// @ts-nocheck
|
||||
import TextField from "@mui/material/TextField";
|
||||
export default function NameOption(props) {
|
||||
const { value, onChange } = props;
|
||||
|
||||
return (
|
||||
<TextField
|
||||
label="Name"
|
||||
value={value ?? ""}
|
||||
onChange={onChange}
|
||||
helperText="Example: My Survival World"
|
||||
FormHelperTextProps={{ sx: { ml: 0 } }}
|
||||
required
|
||||
/>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue