mirror of
https://github.com/kennethnym/jrx.git
synced 2026-03-20 03:41:18 +00:00
Rename package from jfx to jsonsx
Co-authored-by: Ona <no-reply@ona.com>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user