import { useContext } from 'react'; import DataContext from './Context'; import Block from './Block'; import TableRow from './TableRow'; const DataBlock = ({ title, type }) => { const { initialData, delayedData, frameData, workerData } = useContext(DataContext); return (

{title}

Date and language data can be used to identify your location. Changing the settings on your computer can prevent this.

); }; export default DataBlock;