debugging

This commit is contained in:
Harivansh Rathi 2024-12-04 21:28:59 -05:00
parent 0ba8db4935
commit 8ee24fd762
8 changed files with 78 additions and 35 deletions

View file

@ -0,0 +1,19 @@
import { FC } from 'react';
import { Box, Typography } from '@mui/material';
import type { CharacterAnalysis as CharacterAnalysisType } from '../types/character-analysis';
interface Props {
analysis: CharacterAnalysisType;
}
const CharacterAnalysis: FC<Props> = ({ analysis }) => {
return (
<Box>
<Typography variant="h5">{analysis.name}</Typography>
<Typography>{analysis.description}</Typography>
{/* Add more UI elements as needed */}
</Box>
);
};
export default CharacterAnalysis;

View file

@ -1,4 +1,4 @@
import React, { useState } from 'react';
import { useState } from 'react';
import { Box, Typography, Paper, Grid, Tooltip, Card, CardContent, Chip, Dialog, DialogTitle, DialogContent, Divider } from '@mui/material';
import { SocialClass, Character } from '../types/timeline';