import Head from 'next/head' import React from 'react' import Header from '../../../components/header/Header' import { NotificationView } from './notificationView' import BasicButton from '../../../components/buttons/basicButton/BasicButton'; import InputLabel from '@mui/material/InputLabel'; import MenuItem from '@mui/material/MenuItem'; import FormControl from '@mui/material/FormControl'; import Select, { SelectChangeEvent } from '@mui/material/Select'; import Checkbox from '@mui/material/Checkbox'; import RadioButtonUncheckedIcon from '@mui/icons-material/RadioButtonUnchecked'; import RadioButtonCheckedIcon from '@mui/icons-material/RadioButtonChecked'; import PageTitle from '../../../components/pageTitle/PageTitle' import Typography from '@mui/material/Typography'; import Modal from '@mui/material/Modal'; import Box from '@mui/material/Box'; import TextField from '@mui/material/TextField'; import FaqButton1 from '../../../components/buttons/faqButton/FaqButton1'; import FaqButton2 from '../../../components/buttons/faqButton/FaqButton2'; import Autocomplete from '@mui/material/Autocomplete'; import CheckBoxOutlineBlankIcon from '@mui/icons-material/CheckBoxOutlineBlank'; import CheckBoxIcon from '@mui/icons-material/CheckBox'; const style = { position: 'absolute' as const, top: '50%', left: '50%', transform: 'translate(-50%, -50%)', width: 900, height: 500, bgcolor: 'background.paper', border: '2px solid #000', boxShadow: 24, p: 4, overflowY: 'scroll' }; const icon = ; const checkedIcon = ; export default function commonQuestions() { const [open, setOpen] = React.useState(false); const handleOpen = () => setOpen(true); const handleClose = () => setOpen(false); return ( Smart Energia - FAQ

Disparar Notificações

Pode ser que todas as notificaçõs demorem alguns minutos para estarem disponíveis


option.title} renderOption={(props, option, { selected }) => (
  • {option.title}
  • )} sx={{ml:8}} style={{ width: 700 }} renderInput={(params) => ( )} />
    } checkedIcon={} /> Disparar para todos os clientes } checkedIcon={} /> Disparar somente para alguns clientes
    ) } const top100Films = [ { title: 'The Shawshank Redemption', year: 1994 }, { title: 'The Godfather', year: 1972 }, { title: 'The Godfather: Part II', year: 1974 }, { title: 'The Dark Knight', year: 2008 }, { title: '12 Angry Men', year: 1957 }, { title: "Schindler's List", year: 1993 }, { title: 'Pulp Fiction', year: 1994 }, { title: 'The Lord of the Rings: The Return of the King', year: 2003, }, ];