frontend/src/subComponents/RandomLocation.js
2018-12-05 00:49:33 +02:00

9 lines
No EOL
162 B
JavaScript

import React from 'react';
class RandomLocation extends React.Component{
render(){
return(
'hello Random Location!'
)
}
}
export default (RandomLocation);