* Start by moving what we have to _templates * WIP * WIP * Add create/edit/delete template commands * Type fixes cli Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: zomars <zomars@me.com>
7 lines
181 B
TypeScript
7 lines
181 B
TypeScript
import { Text } from "ink";
|
|
import React from "react";
|
|
|
|
export function ImportantText({ children }: { children: React.ReactNode }) {
|
|
return <Text color="red">{children}</Text>;
|
|
}
|