blob: 6f8cdf7490dc9e5ed35306bd2569a5a604f9110f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import AddStopPoint from '../containers/AddStopPoint'
import VisibleStopPoints from'../containers/VisibleStopPoints'
import clone from '../../helpers/clone'
export default class App extends Component {
render() {
return (
<div>
<VisibleStopPoints />
<AddStopPoint />
</div>
)
}
}
|