Skip to content
Snippets Groups Projects
notebook.tsx 450 B

import H1 from "../components/Headings";
import { useTabNavigation } from "../utils/TabNavigation";

export function Notebook() {
  useTabNavigation();
  return (
    <>
      <div className="row mt-4">
        <div className="col-lg-8">
          <strong>
            <H1 text="Ich bin ein Header!"/> 
          </strong>
          <i>
            <p> Ich bin ein Paragraph. </p>
          </i> 
        </div>
        
      </div>
    </>
  );
}