imported files from google gemini ai BUILD env
This commit is contained in:
20
components/SampleDataButton.tsx
Normal file
20
components/SampleDataButton.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
|
||||
import React from 'react';
|
||||
|
||||
interface SampleDataButtonProps {
|
||||
onClick: () => void;
|
||||
}
|
||||
|
||||
export const SampleDataButton: React.FC<SampleDataButtonProps> = ({ onClick }) => {
|
||||
return (
|
||||
<div className="text-center">
|
||||
<button
|
||||
onClick={onClick}
|
||||
className="text-sm text-brand-primary hover:text-brand-dark dark:text-brand-light dark:hover:text-white underline transition-colors"
|
||||
>
|
||||
No flyer? Try with sample data.
|
||||
</button>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user