All files / src/components/GdbComponents/Context Context.jsx

100% Statements 30/30
100% Branches 1/1
100% Functions 1/1
100% Lines 30/30

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 311x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x  
import React from "react";
import "./Context.css";
 
const Context = () => {
  return (
    <div>
      {/* Context */}
      <div className="context">
        <a> $ cat /proc/24963/maps ... lots of stuff omitted ...</a>
        <a>
          {" "}
          555555559000-55555557a000 rw-p 00000000 00:00 0 [heap] ... lots of
          stuff
        </a>
        <a>
          {" "}
          omitted ... 7ffffffde000-7ffffffff000 rw-p 00000000 00:00 0 (gdb)
          x/10x
        </a>
        <a>
          {" "}
          0x5555555592a0 0x5555555592a0: 0x62 0x61 0x6e 0x61 0x6e 0x61 0x73 0x00
        </a>
        <a> 0x5555555592a8: 0x00 0x00</a>
      </div>
    </div>
  );
};
 
export default Context;