react-server675fbba4
react-serverfilesexampleshello-worldApp.jsx
examples/hello-world/App.jsxjsx150 Bb4274238
import { useResponseCache } from "@lazarv/react-server";

export default function App() {
  useResponseCache(30000);
  return <h1>Hello World</h1>;
}