-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add skeleton for Shape and Connection components
- Loading branch information
1 parent
547a674
commit feed67a
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// @flow | ||
import React, { Component } from 'react'; | ||
var ReactDOM = require('react-dom'); | ||
var electron = require('electron'); | ||
|
||
const {Raphael,Paper,Set,Circle,Ellipse,Image,Rect,Text,Path,Line} = require('react-raphael'); | ||
|
||
export default class Connection extends Component { | ||
render() { | ||
return ( | ||
<div> | ||
<div></div> | ||
</div>); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// @flow | ||
import React, { Component } from 'react'; | ||
var ReactDOM = require('react-dom'); | ||
var electron = require('electron'); | ||
|
||
onst {Raphael,Paper,Set,Circle,Ellipse,Image,Rect,Text,Path,Line} = require('react-raphael'); | ||
|
||
export default class Shape extends Component { | ||
render() { | ||
return ( | ||
<div> | ||
<div></div> | ||
</div>); | ||
} | ||
} |