import React from "react"; import { motion } from "framer-motion"; interface StatusBarProps { text: string; } export default function StatusBar({ text }: StatusBarProps) { return ( {text} ); }