11 lines
294 B
TypeScript
11 lines
294 B
TypeScript
import type { Session } from "@/lib/types";
|
|
|
|
export const SessionPrintRow = ({ session }: { session: Session }) => {
|
|
return (
|
|
<div>
|
|
<h3 className="text-lg font-bold text-slate-600">StrongStart</h3>
|
|
<div className="">{session.data.session.strongStart}</div>
|
|
</div>
|
|
);
|
|
};
|