server/assets/js/react/App.tsx

11 lines
167 B
TypeScript
Raw Normal View History

2023-12-02 14:21:05 +00:00
import * as React from "react";
import { Footer } from "./components/Footer";
2023-12-01 19:56:14 +00:00
export default function App() {
return (
<div>
2023-12-02 14:21:05 +00:00
<Footer />
2023-12-01 19:56:14 +00:00
</div>
2023-12-02 14:21:05 +00:00
);
2023-12-01 19:56:14 +00:00
}