Add badStats to memoryCard

This commit is contained in:
Hristo Nedelkov 2023-09-18 19:38:31 +03:00
parent 103e3c98a9
commit 396dd909bd

View File

@ -17,3 +17,6 @@ type Story = StoryObj<typeof meta>
export const Default: Story = {
args: { currentMemory: [12, 24, 12, 4, 30, 50], maxMemory: 100 },
}
export const BadStats: Story = {
args: { maxMemory: 60, currentMemory: [2, 5, 7, 32, 23, 12, 89] }
}