frontend/src/components/RandomTopic.js

9 lines
153 B
JavaScript
Raw Normal View History

2018-12-05 00:49:33 +02:00
import React from 'react';
class RandomTopic extends React.Component{
render(){
return(
'hello Random Topic!'
)
}
}
export default (RandomTopic);