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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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
/** | |
* Lets WET-BOEW know about a new component that was added to the page so that | |
* WET-BOEW can apply the WET-BOEW JavaScript to it. | |
* | |
* @param {string} selector an HTML selector, usually the class | |
* name prefixed with a period. | |
*/ | |
async function registerWbComponent(selector: string): Promise<void> { | |
if (typeof window !== "undefined") { | |
const wet: WetBoew = (window as any).wb as WetBoew; |
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
import { | |
Form, | |
FormGroup, | |
TextInput, | |
SubmitButton, | |
DefaultTemplate, | |
} from "@arcnovus/wet-boew-react"; | |
import { MultiCheckboxSelect } from "../../components/MultiCheckboxSelect"; | |
export default function FormExample() { |
OlderNewer