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 <SessionTable
sessions={sessions} sessions={sessions}
currentSessionId={currentSessionId} currentSessionId={currentSessionId}
/> />
{/* Mobile Adaptive Cards View (< 768px) */} {/* Mobile Adaptive Cards View (< 768px) */}
<SessionDeck <SessionDeck
sessions={sessions} sessions={sessions}
currentSessionId={currentSessionId} currentSessionId={currentSessionId}
/> />
<style> <style>

View File

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

View File

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