import React from 'react'; import { Box, Text } from 'ink'; export function MemoSection({ latestMemo, width, height }) { const lines = latestMemo.split('\n'); const maxLines = Math.max(height - 28, 4); return ( Liste de courses {lines.slice(0, maxLines).map((line, index) => ( {line} ))} ); }