mirror of
https://github.com/kennethnym/jrx.git
synced 2026-03-20 11:51:17 +00:00
@@ -1,23 +1,23 @@
|
||||
import { jsx } from "jsonsx/jsx-runtime";
|
||||
import type { JsonsxNode } from "jsonsx";
|
||||
import { jsx } from "@nym.sh/jrx/jsx-runtime";
|
||||
import type { JrxNode } from "@nym.sh/jrx";
|
||||
|
||||
|
||||
export function Stack(props: Record<string, unknown>): JsonsxNode {
|
||||
export function Stack(props: Record<string, unknown>): JrxNode {
|
||||
return jsx("Stack", props);
|
||||
}
|
||||
|
||||
export function Card(props: Record<string, unknown>): JsonsxNode {
|
||||
export function Card(props: Record<string, unknown>): JrxNode {
|
||||
return jsx("Card", props);
|
||||
}
|
||||
|
||||
export function Text(props: Record<string, unknown>): JsonsxNode {
|
||||
export function Text(props: Record<string, unknown>): JrxNode {
|
||||
return jsx("Text", props);
|
||||
}
|
||||
|
||||
export function Button(props: Record<string, unknown>): JsonsxNode {
|
||||
export function Button(props: Record<string, unknown>): JrxNode {
|
||||
return jsx("Button", props);
|
||||
}
|
||||
|
||||
export function Input(props: Record<string, unknown>): JsonsxNode {
|
||||
export function Input(props: Record<string, unknown>): JrxNode {
|
||||
return jsx("Input", props);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user