zed/script/storybook

8 lines
115 B
Plaintext
Raw Normal View History

#!/bin/bash
if [ -z "$1" ]; then
cargo run -p storybook
else
cargo run -p storybook -- "components/$1"
fi