()
| 1 | import { VStack, Box } from "@kuma-ui/core"; |
| 2 | |
| 3 | export const VStackExample = () => { |
| 4 | return ( |
| 5 | <VStack justify="center" alignItems="center" gap={8}> |
| 6 | <Box p={8} bg="blue" color="white"> |
| 7 | Hello world |
| 8 | </Box> |
| 9 | <Box p={8} bg="green" color="white"> |
| 10 | Hello again |
| 11 | </Box> |
| 12 | </VStack> |
| 13 | ); |
| 14 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected