Skip to content

Commit 62f0228

Browse files
committed
minor improvements
1 parent a5fa964 commit 62f0228

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
import React, { Fragment } from 'react';
1+
import React from 'react';
22

33
import withSession from '../Session/withSession';
44

55
import { MessageCreate, Messages } from '../Message';
66

77
const Landing = ({ session }) => (
8-
<Fragment>
9-
<h2>Feed</h2>
8+
<div>
9+
<h2>Landing Page</h2>
1010

1111
{session && session.me && <MessageCreate />}
1212
<Messages me={session.me} limit={2} />
13-
</Fragment>
13+
</div>
1414
);
1515

1616
export default withSession(Landing);

client/src/index.css

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)