File tree Expand file tree Collapse file tree 2 files changed +7
-17
lines changed Expand file tree Collapse file tree 2 files changed +7
-17
lines changed Original file line number Diff line number Diff line change 1
- const path = require ( ' path' ) ;
1
+ const path = require ( " path" ) ;
2
2
3
3
const {
4
4
app,
@@ -10,11 +10,7 @@ const {
10
10
} = require ( "electron" ) ;
11
11
12
12
// Uncomment below for hot reloading during development
13
- < << << << HEAD
14
- require ( "electron-reload" ) ( __dirname ) ;
15
- = === ===
16
13
// require('electron-reload')(__dirname);
17
- >>> >>> > 11e0643 d114b6c294dc2b66c3fd4727ffb173825
18
14
19
15
// const isDev = true;
20
16
const isDev =
@@ -77,11 +73,11 @@ const createWindow = () => {
77
73
"node-Integration" : false
78
74
} ,
79
75
show : false ,
80
- icon : path . join ( __dirname , ' /src/public/icons/mac/icon.icns' ) ,
76
+ icon : path . join ( __dirname , " /src/public/icons/mac/icon.icns" ) ,
81
77
win : {
82
- icon : path . join ( __dirname , ' /src/public/icons/win/icon.ico' ) ,
83
- target : [ ' portable' ] ,
84
- } ,
78
+ icon : path . join ( __dirname , " /src/public/icons/win/icon.ico" ) ,
79
+ target : [ " portable" ]
80
+ }
85
81
} ) ;
86
82
87
83
// and load the index.html of the app.
Original file line number Diff line number Diff line change 1
- < < << << < HEAD
2
1
import React , { Component } from "react" ;
3
2
import { Transformer } from "react-konva" ;
4
3
import { ComponentInt , ComponentsInt , ChildInt } from "../utils/interfaces" ;
5
- = === ===
6
- import React , { Component } from 'react' ;
7
- import { Transformer } from 'react-konva' ;
8
- import { ChildInt } from '../utils/interfaces.ts' ;
9
- > >>> >>> 11e0643 d114b6c294dc2b66c3fd4727ffb173825
10
4
11
5
interface PropsInt {
12
6
focusChild : ChildInt ;
@@ -42,9 +36,9 @@ export default class TransformerComponent extends Component<PropsInt> {
42
36
render ( ) {
43
37
return (
44
38
< Transformer
45
- className = { ' Transformer' }
39
+ className = { " Transformer" }
46
40
rotateEnabled = { false }
47
- ref = { ( node ) => {
41
+ ref = { node => {
48
42
this . transformer = node ;
49
43
} }
50
44
borderEnabled = { false }
You can’t perform that action at this time.
0 commit comments