Skip to content

Commit

Permalink
Box style with bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurfiorette committed Mar 22, 2021
1 parent af81d00 commit ae4827e
Show file tree
Hide file tree
Showing 19 changed files with 292 additions and 67 deletions.
3 changes: 0 additions & 3 deletions package-lock.json

This file was deleted.

200 changes: 187 additions & 13 deletions web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,10 @@
},
"homepage": "https://github.com/ArthurFiorette/steam-trader#readme",
"dependencies": {
"bootstrap": "^4.6.0",
"bootstrap": "^5.0.0-beta2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"react": "^17.0.1",
"react-bootstrap": "^1.5.2",
"react-bootstrap-icons": "^1.4.0",
"react-dom": "^17.0.1"
},
"devDependencies": {
Expand Down
3 changes: 3 additions & 0 deletions web/src/app/app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#app {
height: 100%;
}
14 changes: 14 additions & 0 deletions web/src/app/app.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import React, { Fragment } from 'react';
import './app.css';

import Header from '../components/header';
import Main from './main';

export default function () {
return (
<Fragment>
<Header />
<Main />
</Fragment>
);
}
Empty file removed web/src/app/index.css
Empty file.
Loading

0 comments on commit ae4827e

Please sign in to comment.