import React from 'react'; import {Box, Text} from '../../src/index.js'; function BoxBackgrounds() { return ( Box Background Examples: 1. Standard red background (10x3): Hello 2. Blue background with border (12x4): Border 3. Green background with padding (14x4): Padding 4. Yellow background with center alignment (16x3): Centered 5. Magenta background, column layout (12x5): Line 1 Line 2 6. Hex color background #FF8800 (10x3): Hex 7. RGB background rgb(0,255,0) (10x3): RGB 8. Text inheritance test: Inherited Override Back to inherited 9. Nested background inheritance: Outer: Inner: Deep Press Ctrl+C to exit ); } export default BoxBackgrounds;