import { useContext } from 'react'; import DataContext from './Context'; import './PredictionBlock.css'; import Block from './Block'; import PredictionTableRow from './PredictionTableRow'; const PredictionBlock = () => { const { prediction, mapUrl } = useContext(DataContext); return (

Location Prediction

Map of location prediction

Accuracy of the location prediction is dependant on how much authentic info you're exposing. To learn about how to hide your location visit the{' '} GitHub repo .

); }; export default PredictionBlock;