Rename package from jfx to jsonsx

Co-authored-by: Ona <no-reply@ona.com>
This commit is contained in:
2026-02-28 01:37:10 +00:00
parent c9d4ff28e3
commit 99fe5e1db9
21 changed files with 142 additions and 142 deletions

View File

@@ -1,23 +1,23 @@
import { jsx } from "jfx/jsx-runtime";
import type { JfxNode } from "jfx";
import { jsx } from "jsonsx/jsx-runtime";
import type { JsonsxNode } from "jsonsx";
export function Stack(props: Record<string, unknown>): JfxNode {
export function Stack(props: Record<string, unknown>): JsonsxNode {
return jsx("Stack", props);
}
export function Card(props: Record<string, unknown>): JfxNode {
export function Card(props: Record<string, unknown>): JsonsxNode {
return jsx("Card", props);
}
export function Text(props: Record<string, unknown>): JfxNode {
export function Text(props: Record<string, unknown>): JsonsxNode {
return jsx("Text", props);
}
export function Button(props: Record<string, unknown>): JfxNode {
export function Button(props: Record<string, unknown>): JsonsxNode {
return jsx("Button", props);
}
export function Input(props: Record<string, unknown>): JfxNode {
export function Input(props: Record<string, unknown>): JsonsxNode {
return jsx("Input", props);
}