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

View File

@ -1,2 +1,2 @@
react: npm run react-start
electron: npm run electron-start
electron: npm run electron-start

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

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

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,8 @@
<meta charset="utf-8">
<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/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 />
}

View File

@ -1 +1 @@
export * from './CameraList';
export * from './CameraList';

View File

@ -1 +1 @@
export * from './CameraList'
export * from './CameraList'