Skip to content

Commit 78abaee

Browse files
Remove background color from App component
1 parent e3a2a02 commit 78abaee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { CelebrationModal } from './components/CelebrationModal';
33

44
const App: React.FC = () => {
55
return (
6-
<div className="min-h-screen bg-slate-100 flex items-center justify-center">
6+
<div className="min-h-screen flex items-center justify-center">
77
<CelebrationModal
88
isOpen={true}
99
onClose={() => {}}
@@ -12,4 +12,4 @@ const App: React.FC = () => {
1212
);
1313
};
1414

15-
export default App;
15+
export default App;

0 commit comments

Comments
 (0)