18 lines
379 B
TypeScript
18 lines
379 B
TypeScript
import React from 'react';
|
|
import useCardAnimation from '@/components/cardStack/hooks/useCardAnimation';
|
|
|
|
interface DashboardProps {
|
|
title: string;
|
|
className?: string;
|
|
}
|
|
|
|
const Dashboard: React.FC<DashboardProps> = ({ title, className = '' }) => {
|
|
return (
|
|
<div className={`dashboard ${className}`}>
|
|
<h1>{title}</h1>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Dashboard;
|