Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
IstiakAlin authored Apr 19, 2024
1 parent 2a51074 commit 80b297a
Show file tree
Hide file tree
Showing 66 changed files with 7,257 additions and 0 deletions.
38 changes: 38 additions & 0 deletions ghewMew_2/frontend_1/src/App.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
.App {
text-align: center;
}

.App-logo {
height: 40vmin;
pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
}

.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}

.App-link {
color: #61dafb;
}

@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
13 changes: 13 additions & 0 deletions ghewMew_2/frontend_1/src/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import logo from './logo.svg';
import './App.css';
import Router from './router/Router';


function App() {
return (
<Router />

);
}

export default App;
8 changes: 8 additions & 0 deletions ghewMew_2/frontend_1/src/App.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { render, screen } from '@testing-library/react';
import App from './App';

test('renders learn react link', () => {
render(<App />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});
2 changes: 2 additions & 0 deletions ghewMew_2/frontend_1/src/css/bootstrap.min.css

Large diffs are not rendered by default.

Loading

0 comments on commit 80b297a

Please sign in to comment.