mirror of
https://github.com/zhigang1992/react-native-gifted-chat.git
synced 2026-01-12 17:42:27 +08:00
9 lines
161 B
JavaScript
9 lines
161 B
JavaScript
import React, { Component } from "react";
|
|
import MyChat from "./MyChat";
|
|
|
|
export default class App extends Component {
|
|
render() {
|
|
return <MyChat />;
|
|
}
|
|
}
|