import React from "react" import { Flex, Box, Text } from "theme-ui" const CodeBox = ({ header, children }) => { return ( {header} {children} ) } export default CodeBox