Skip to content

Commit

Permalink
restore
Browse files Browse the repository at this point in the history
  • Loading branch information
MetinVn committed Aug 13, 2024
2 parents 65fa8a7 + fc9a657 commit 32c71af
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
Empty file removed .env
Empty file.
12 changes: 12 additions & 0 deletions src/components/ErrorMsg.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const ErrorMessage = ({ message, isVisible }) => {
return (
<span
className={`block text-[#FF5252] bg-[#ffe6e6] p-2 rounded mt-2 dark:text-[#FF5252] dark:bg-[#2E1E1E] transition-colors duration-300 ${
!isVisible ? "hidden" : ""
}`}>
{message}
</span>
);
};

export default ErrorMessage;
1 change: 1 addition & 0 deletions src/st.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VITE_RAPID_API_KEY = bb6ca9e02bmsh37ace359628eb67p1cfcfcjsn8051f8356a0f

0 comments on commit 32c71af

Please sign in to comment.