16 lines
415 B
JavaScript
16 lines
415 B
JavaScript
import Block from './Block';
|
|
import Table from './Table';
|
|
import getScreen from '../utils/screen';
|
|
|
|
const ScreenBlock = () => (
|
|
<Block>
|
|
<h1>Screen</h1>
|
|
<Table type="screen" data={getScreen()} />
|
|
<p>
|
|
<b>Explanation:</b> JavaScript can be used to find information about your
|
|
hardware. This information can be used to create a fingerprint.
|
|
</p>
|
|
</Block>
|
|
);
|
|
|
|
export default ScreenBlock;
|