/**
 * TEAM: frontend_infra
 *
 * @flow strict
 */
import * as React from "react";

const TabThree = (): React.Element<"div"> => (
  <div
    style={{
      height: 200,
      display: "flex",
      flexDirection: "column",
      justifyContent: "center",
      alignItems: "center",
    }}
  >
    Gandalf Saruman Radagast
  </div>
);

export default TabThree;
