feat(frontend): add navbar to switch between types of stats
This commit is contained in:
18
frontend/src/components/EmotionalStats.tsx
Normal file
18
frontend/src/components/EmotionalStats.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import type { ContentAnalysisResponse } from "../types/ApiTypes"
|
||||
import StatsStyling from "../styles/stats_styling";
|
||||
|
||||
const styles = StatsStyling;
|
||||
|
||||
type EmotionalStatsProps = {
|
||||
contentData: ContentAnalysisResponse;
|
||||
}
|
||||
|
||||
const EmotionalStats = ({contentData}: EmotionalStatsProps) => {
|
||||
return (
|
||||
<div style={styles.page}>
|
||||
<p>lol</p>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default EmotionalStats;
|
||||
Reference in New Issue
Block a user