feat(frontend): add navbar to switch between types of stats

This commit is contained in:
2026-02-09 18:42:41 +00:00
parent d028bd4f12
commit 8f9e30be4a
2 changed files with 54 additions and 7 deletions

View 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;