Moves routes inside an _app for the header and builds a print route
This commit is contained in:
10
src/components/documents/session/SessionPrintRow.tsx
Normal file
10
src/components/documents/session/SessionPrintRow.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
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>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user