import { createContext } from 'react';

export type TCardContext = {
  theme: 'dark' | 'light';
  isLink: boolean;
};

export const CardContext = createContext<TCardContext>({
  theme: 'light',
  isLink: false,
});
