Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18360dd commit ffbe0e5Copy full SHA for ffbe0e5
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@codingapi/ui-framework",
3
- "version": "0.0.14",
+ "version": "0.0.15",
4
"description": "A UI Framework built with React and Typescript",
5
"keywords": [
6
"ui",
src/Form/content.ts
@@ -0,0 +1,4 @@
+import React from "react";
+import {FormItemProps} from "./types";
+
+export const FormItemContext = React.createContext<FormItemProps|null>(null);
src/Form/index.ts
@@ -4,3 +4,4 @@ export * from './instance';
export * from './listener';
export * from './utils';
export * from './validate';
7
+export * from './content';
0 commit comments