10 lines
143 B
TypeScript
10 lines
143 B
TypeScript
import HomeView from "@/components/Home/HomeView";
|
|
|
|
export default function Application() {
|
|
return (
|
|
<>
|
|
<HomeView />
|
|
</>
|
|
);
|
|
}
|