-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added new join function for placeholders
- Loading branch information
1 parent
c99bb69
commit b5d1550
Showing
8 changed files
with
27 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
## 1.4.1 | ||
* Added join function for placeholders | ||
|
||
## 1.4.0 | ||
* Added multi-component creation feature | ||
|
||
|
Empty file.
14 changes: 14 additions & 0 deletions
14
RA/Static/Scripts/React/components/Form/Item/Test123/Test123.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from 'react'; | ||
|
||
import styles from './Test123.module.css'; | ||
|
||
type Test123Props = {}; | ||
|
||
export const Test123: React.FC<Test123Props> = props => { | ||
return <div />; | ||
}; | ||
|
||
Test123.displayName = 'Test123'; | ||
|
||
|
||
RA/Form/Item/Test123 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './Test123' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"version": "1.4.0", | ||
"main": "index.ts", | ||
"repository": "[email protected]:coolassassin/reactcci.git", | ||
"description": "React Create Component CLI. Create React component avoiding making manual boilerplate.", | ||
"description": "React Create Component CLI which allows you to build your React application with your own file structure and make your components interactively without typing any paths. Setup your config once to build your app as quick as it possible (React, Preact, React Native, Vue, Node.JS)", | ||
"author": "coolassassin <[email protected]>", | ||
"license": "MIT", | ||
"preferGlobal": true, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters