JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 441
  • Score
    100M100P100Q101602F
  • License MIT

Roact hooks based on Kampfkarren's hooks & React Hooks

Package Exports

  • @rbxts/roact-hooked
  • @rbxts/roact-hooked/src/init.lua

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@rbxts/roact-hooked) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@rbxts/roact-hooked

Roact hooks based on Kampfkarren's hooks & React Hooks

Install

npm install @rbxts/roact-hooked

Usage

import Roact from "@rbxts/roact";
import { withHooks, useEffect, useState } from "@rbxts/roact-hooked";

interface Props {
  name?: string;
}

function MyComponent({ name = "David Baszucki" }: Props) {
  const [count, setCount] = useState(0);

  useEffect(() => {
    print("Counter: " + count);
  }, [count]);

  return (
    <textbutton
      Size={new UDim2(1, 0, 1, 0)}
      Text={`${name} pressed ${count} times`}
      Event={{
        Activated: () => setCount((value) => value + 1),
      }}
    />
  );
}

export default withHooks(MyComponent);