795251a080
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
14 lines
317 B
TypeScript
14 lines
317 B
TypeScript
import { defineComponent } from "vue";
|
|
import { Box, Text } from "@vue-tui/runtime";
|
|
|
|
export default defineComponent(() => {
|
|
return () => (
|
|
<Box flexDirection="column" paddingX={1}>
|
|
<Text bold color="cyan">
|
|
coding-agent
|
|
</Text>
|
|
<Text dimColor>scaffold works</Text>
|
|
</Box>
|
|
);
|
|
});
|