Manuel Bustillo
25703098d1
All checks were successful
Check usage of free licenses / build-static-assets (pull_request) Successful in 1m47s
Add copyright notice / copyright_notice (pull_request) Successful in 3m4s
Playwright Tests / test (pull_request) Successful in 6m8s
Build Nginx-based docker image / build-static-assets (pull_request) Successful in 11m35s
Check usage of free licenses / build-static-assets (push) Successful in 1m34s
Playwright Tests / test (push) Successful in 4m30s
Build Nginx-based docker image / build-static-assets (push) Successful in 17m58s
5 lines
209 B
TypeScript
5 lines
209 B
TypeScript
/* Copyright (C) 2024 Manuel Bustillo*/
|
|
|
|
export default function Skeleton({ className }: { className: string }) {
|
|
return <div className={`bg-slate-200 motion-safe:animate-pulse rounded ${className}`} />;
|
|
} |