scrimba
Building a chat app with React and Chatkit
Intro to Chatkit
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Intro to Chatkit
Expand for more info
App.js
run
preview
console
import React from 'react'
import MessageList from './components/MessageList'
import SendMessageForm from './components/SendMessageForm'
import RoomList from './components/RoomList'
import NewRoomForm from './components/NewRoomForm'

class App extends React.Component {
render() {
return (
<div className="app">
<RoomList />
<MessageList />
<SendMessageForm />
<NewRoomForm />
</div>
);
}
}

export default App
Console
index.html#
-1:15