Skip to content

Commit 423e02c

Browse files
authored
Update README.md
1 parent fd33a38 commit 423e02c

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

step-06/README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@ Now, let's build some features. We are going to build an app that let users stor
55
* [1. User Information](#1-user-information)
66
* [2. Daily Album](#2-daily-album)
77
* [3. Create Album Component](#3-create-album-component)
8+
* [Album](#album)
9+
* [AlbumItem](#albumitem)
10+
* [FilePicker](#filepicker)
811
* [4. Refresh Album](#4-refresh-album)
912
* [5. Upload Text](#5-upload-text)
10-
* [6. Run App](#5-run-app)
13+
* [6. Run App](#6-run-app)
1114

1215
## 1. User Information
1316

@@ -105,7 +108,7 @@ Then render with `theme`
105108

106109
## 3. Create Album Component
107110

108-
**Album**
111+
### Album
109112

110113
Let's create our own `<Album>` so we don't need to learn Amplify theming.
111114

@@ -149,7 +152,7 @@ Load items to render
149152

150153
<img src="album-render-key.png" width="480px" />
151154

152-
**AlbumItem**
155+
### AlbumItem
153156

154157
Of course we want image instead of the key. Let's create an `<AlbumItem>` for it.
155158

@@ -187,7 +190,7 @@ Then update `src/components/album/Album.jsx`
187190
{ items.map(item => <AlbumItem key={item.key} item={item} />) }
188191
```
189192

190-
**FilePicker**
193+
### FilePicker
191194

192195
Now we can see the images uploaded by `<S3Album>`. Let's build a component to upload file.
193196

0 commit comments

Comments
 (0)