Spitha
React just got
A React Component that renders React components Quicker while handing Infinite Rendering
<div>
<WelcomeComponent> Welcome to Spitha!</WelcomeComponent>
<Text>React just got Faster!!!</Text>
<h1>{`Test Component ${i + 1}`}</h1>
<a href={`https://example.com/${i + 1}`}>Visit Test Component made with{i + 1}</a>
<img src="image.jpg" alt="Image" />;
</div>
import { Text } from "@chakra-ui/react";
import { Spitha } from "spitha";
export default function Home() {
return (
<div>
<Spitha fetchData={() => Promise.resolve()}>
<div>
<Text fontSize='6xl'>React just got faster!!!</Text>
<Text>Yayyyyyyyyyy</Text>
</div>
</Spitha>
</div>
);
}
$ yarn add spitha
$ npm i spitha
Jaival Patel (www.jaivalpatel.com) @ 2024 ❤️