docs(tasks): move ui decomposition ph1 to complete and format subcomponents

This commit is contained in:
Tyler Gillispie 2026-08-25 23:39:39 -07:00
parent eb15c9003f
commit f5935a49a7
4 changed files with 2 additions and 4 deletions

View File

@ -109,14 +109,12 @@ export const SessionsPage = ({
<SessionTable
sessions={sessions}
currentSessionId={currentSessionId}
/>
{/* Mobile Adaptive Cards View (< 768px) */}
<SessionDeck
sessions={sessions}
currentSessionId={currentSessionId}
/>
<style>

View File

@ -1,5 +1,5 @@
export const SessionDeck = (
{ sessions, currentSessionId}: {
{ sessions, currentSessionId }: {
sessions: any[];
currentSessionId: string;
},

View File

@ -1,5 +1,5 @@
export const SessionTable = (
{ sessions, currentSessionId}: {
{ sessions, currentSessionId }: {
sessions: any[];
currentSessionId: string;
},