mirror of
https://github.com/harivansh-afk/Austens-Wedding-Guide.git
synced 2026-04-16 05:03:29 +00:00
debugging
This commit is contained in:
parent
0ba8db4935
commit
8ee24fd762
8 changed files with 78 additions and 35 deletions
19
src/components/CharacterAnalysis.tsx
Normal file
19
src/components/CharacterAnalysis.tsx
Normal 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;
|
||||
|
|
@ -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';
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue