import React from "react"; import { Box, Paper, Typography, Stack } from "@mui/material"; import { UniverseMetrics } from "./UniverseMetrics"; export const UniverseView = ({ universe }) => { return ( {/* Universe Info */} Universe Information {/* Base Story */} Base Story {universe?.base_story} ); };