Little tweaks

This commit is contained in:
Timothy Warren 2018-03-30 18:49:49 -04:00
parent 7a41433f16
commit a697cf56c3
9 changed files with 13 additions and 13 deletions

3
public/css/app.css Normal file
View File

@ -0,0 +1,3 @@
/**
* Custom styles for electron app
*/

View File

@ -5,6 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="stylesheet" href="%PUBLIC_URL%/css/bootstrap.min.css" />
<link rel="stylesheet" href="%PUBLIC_URL%/css/app.css" />
<title>Inferno App</title>
</head>
<body>

View File

@ -5,5 +5,5 @@ import Col from 'inferno-bootstrap/dist/Col'
export {
Col,
Container,
Row
Row,
}

View File

@ -1,5 +1 @@
import * as Grid from './Grid'
export {
Grid,
}
export * from './Grid'

View File

@ -1,3 +1,3 @@
export const CameraList = () => {
return <div />
}