import React from 'react' import { Card, CardBody, Col, Row } from 'reactstrap' import { styled } from '@mui/material/styles' import Chip from '@mui/material/Chip' import Paper from '@mui/material/Paper' import TagFacesIcon from '@mui/icons-material/TagFaces' import { Circle, Info } from '@mui/icons-material' const ListItem = styled('li')(({ theme }) => ({ margin: theme.spacing(0.5) })) const Legenda = () => { const [chipData, setChipData] = React.useState([ { key: 0, label: 'BerNPWP', icon: }, { key: 1, label: 'Non NPWP', icon: }, { key: 2, label: 'Poi Google', icon: } ]) const handleDelete = (chipToDelete) => () => { setChipData((chips) => chips.filter((chip) => chip.key !== chipToDelete.key)) } return ( <> { window.open( 'https://cendol-djp.intranet.pajak.go.id/geoserver/', '_blank' // <- This is what makes it open in a new window. ) }} >
Klik di sini jika data poi tidak tampil
Legenda Poi Dasar :
{chipData.map((data) => { let icon if (data.label === 'React') { icon = } return ( <> ) })}
) } export default Legenda