Skip to content

Commit

Permalink
Merge pull request gatteo#19 from coreyladovsky/master
Browse files Browse the repository at this point in the history
fix typo crate to create
  • Loading branch information
ndrkltsk authored Jul 27, 2020
2 parents 7cf90f0 + 24551e5 commit 667760f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export const App = () => {
/>)
: (
<>
<h1>Crate a Meeting</h1>
<h1>Create a Meeting</h1>
<input type='text' placeholder='Room name' value={roomName} onChange={e => setRoomName(e.target.value)} />
<input type='text' placeholder='Your name' value={displayName} onChange={e => setDisplayName(e.target.value)} />
<button onClick={() => setOnCall(true)}> Let&apos;s start!</button>
Expand Down
2 changes: 1 addition & 1 deletion example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const App: React.FC = (): React.ReactElement => {
/>)
: (
<>
<h2>Crate your Meeting</h2>
<h2>Create your Meeting</h2>
<input type='text' placeholder='Room name' value={roomName} onChange={(e: React.ChangeEvent<HTMLInputElement>): void => setRoomName(e.target.value)} />
<input type='text' placeholder='Your name' value={displayName} onChange={(e: React.ChangeEvent<HTMLInputElement>): void => setDisplayName(e.target.value)} />
<input type='text' placeholder='Password' value={password} onChange={(e: React.ChangeEvent<HTMLInputElement>): void => setPassword(e.target.value)} />
Expand Down

0 comments on commit 667760f

Please sign in to comment.