Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | 'use client' import { WorksheetTriptychHero, type TriptychPanel } from './WorksheetTriptychHero' /** * Three scaffolding levels for 1027 + 2034 = 3061. * 4-digit addition with ones-column regrouping (7+4=11). * Demonstrates place value colors scaling with digit count. */ const PANELS: TriptychPanel[] = [ { label: 'No Scaffolding', description: 'Standard format', body: { operator: 'addition', addend1: 1027, addend2: 2034, fontSize: 18, showCarryBoxes: false, showAnswerBoxes: false, showPlaceValueColors: false, showTenFrames: false, }, }, { label: 'Place Value Colors', description: 'See the columns', body: { operator: 'addition', addend1: 1027, addend2: 2034, fontSize: 18, showCarryBoxes: false, showAnswerBoxes: true, showPlaceValueColors: true, showTenFrames: false, }, }, { label: 'Colors + Carry Boxes', description: 'Full multi-digit support', body: { operator: 'addition', addend1: 1027, addend2: 2034, fontSize: 18, showCarryBoxes: true, showAnswerBoxes: true, showPlaceValueColors: true, showTenFrames: false, }, }, ] export default function MultiDigitHero() { return <WorksheetTriptychHero panels={PANELS} componentName="multi-digit-hero" /> } |