-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
1,787 additions
and
267 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
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
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,28 @@ | ||
import * as React from "react"; | ||
import { | ||
PlasmicTextInput, | ||
DefaultTextInputProps | ||
} from "./plasmic/xrpense/PlasmicTextInput"; | ||
|
||
import { TextInputRef } from "@plasmicapp/react-web"; | ||
|
||
export interface TextInputProps extends DefaultTextInputProps { | ||
// Feel free to add any additional props that this component should receive | ||
} | ||
function TextInput_(props: TextInputProps, ref: TextInputRef) { | ||
const { plasmicProps } = PlasmicTextInput.useBehavior<TextInputProps>( | ||
props, | ||
ref | ||
); | ||
return <PlasmicTextInput {...plasmicProps} />; | ||
} | ||
|
||
const TextInput = React.forwardRef(TextInput_); | ||
|
||
export default Object.assign( | ||
TextInput, | ||
|
||
{ | ||
__plumeType: "text-input" | ||
} | ||
); |
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
Oops, something went wrong.