mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-08 13:38:47 +00:00
start of lazy loading
This commit is contained in:
parent
465c807a60
commit
350ec46600
12 changed files with 68 additions and 93 deletions
|
@ -1,30 +0,0 @@
|
|||
import * as React from "react";
|
||||
import Box from "@mui/material/Box";
|
||||
import TextField from "@mui/material/TextField";
|
||||
import StyledEngineProvider from "@mui/styled-engine/StyledEngineProvider";
|
||||
import { useFormControl } from '@mui/material/FormControl';
|
||||
|
||||
|
||||
export default function MultilineTextFields() {
|
||||
return (
|
||||
<StyledEngineProvider injectFirst>
|
||||
<Box
|
||||
component="form"
|
||||
sx={{ "& .MuiTextField-root": { m: 1, width: "25ch" } }}
|
||||
noValidate
|
||||
autoComplete="off"
|
||||
>
|
||||
<div>
|
||||
<TextField
|
||||
className="bio-input"
|
||||
id="outlined-multiline-flexible"
|
||||
label="Multiline"
|
||||
multiline
|
||||
maxRows={4}
|
||||
onChange={(event) => {}}
|
||||
/>
|
||||
</div>
|
||||
</Box>
|
||||
</StyledEngineProvider>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue