8 lines
224 B
TypeScript
8 lines
224 B
TypeScript
import { StarsBackground } from '@/registry/backgrounds/stars';
|
|
|
|
export const StarsBackgroundDemo = () => {
|
|
return (
|
|
<StarsBackground className="absolute inset-0 flex items-center justify-center rounded-xl" />
|
|
);
|
|
};
|