14 lines
260 B
Plaintext
14 lines
260 B
Plaintext
|
|
<Button
|
||
|
|
component="label"
|
||
|
|
role={undefined}
|
||
|
|
variant="contained"
|
||
|
|
tabIndex={-1}
|
||
|
|
startIcon={<CloudUploadIcon />}
|
||
|
|
>
|
||
|
|
Upload files
|
||
|
|
<VisuallyHiddenInput
|
||
|
|
type="file"
|
||
|
|
onChange={(event) => console.log(event.target.files)}
|
||
|
|
multiple
|
||
|
|
/>
|
||
|
|
</Button>
|