mirror of
https://github.com/wassname/talk.git
synced 2026-07-26 13:37:38 +08:00
12 lines
192 B
JavaScript
12 lines
192 B
JavaScript
import React, {Component} from 'react';
|
|
|
|
export default class CommunityContainer extends Component {
|
|
render() {
|
|
return (
|
|
<div>
|
|
<h1>Community</h1>
|
|
</div>
|
|
);
|
|
}
|
|
}
|