UNPKG
@flatten-js/polygon-offset
Version:
latest (1.1.4)
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Polygon equidistant offset
github.com/alexbol99/flatten-offset
alexbol99/flatten-offset
@flatten-js/polygon-offset
/
examples
/
create-react-app
/
src
/
App.test.js
10 lines
(8 loc)
•
248 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
from
'react'
;
import
ReactDOM
from
'react-dom'
;
import
App
from
'./App'
;
it
(
'renders without crashing'
,
() =>
{
const
div =
document
.
createElement
(
'div'
);
ReactDOM
.
render
(
<
App
/>
, div);
ReactDOM
.
unmountComponentAtNode
(div); });