Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ECO-1955] Update loading animation with hearts #268

Merged
merged 17 commits into from
Nov 12, 2024
Merged
Prev Previous commit
Next Next commit
Add loading dedicated page to inspect loading animation
CRBl69 committed Oct 7, 2024
commit 1155b980650aed366b8685b2f46089dd833a8e7b
9 changes: 9 additions & 0 deletions src/typescript/frontend/src/app/loading/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
"use client";

import React from "react";

import LoadingComponent from "components/loading";

export default function Loading() {
return <LoadingComponent />;
}