Projekt

Obecné

Profil

Stáhnout (338 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
import { Button } from "@mui/material"
2
import { Fragment } from "react"
3
import AddIcon from '@mui/icons-material/Add'
4

    
5
const AddNewLocationDialog = () => {
6

    
7
    return (
8
        <Fragment>
9
            <Button startIcon={<AddIcon />} variant="outlined">Add Location</Button>
10
        </Fragment>
11
    )
12
}
13

    
14
export default AddNewLocationDialog
(1-1/8)