💻 React !

This commit is contained in:
2025-12-04 22:00:08 +01:00
parent af26eac13d
commit 98c73f61a0
11 changed files with 318 additions and 19 deletions

View File

@@ -0,0 +1,17 @@
import { StrictMode } from "@rbxts/react";
import Profile from ".";
import React from "@rbxts/react";
import { createRoot } from "@rbxts/react-roblox";
import { Players } from "@rbxts/services";
export = function (target: Instance) {
const root = createRoot(target);
root.render(
<StrictMode>
<Profile player={Players.GetPlayers()[0]} />
</StrictMode>,
);
return function () {
root.unmount();
};
};