Skip to content

Commit 5d4026f

Browse files
committed
Clarify README
1 parent 225c5aa commit 5d4026f

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
In this workshop, you'll build a Sims-style character creation screen.
44

5-
65
## Mockups
76

87
Desktop:
@@ -35,7 +34,7 @@ You should be able to access the application at `http://localhost:3000`.
3534

3635
This project is built with React.
3736

38-
**All of the functionality has already been built.** Your job is to add the CSS. Some light tweaking of the JSX will be required, but only in service of styling and accessibility goals.
37+
**All of the functionality has already been built.** Your job is to add the CSS. You're also allowed to tweak the JSX (HTML) as-needed. But you shouldn't need to fuss with any advanced React stuff.
3938

4039
This project uses **CSS Modules**. CSS modules are ultimately very similar to vanilla CSS, but the classes are applied in JS. Here's an example:
4140

@@ -51,11 +50,7 @@ This project uses **CSS Modules**. CSS modules are ultimately very similar to va
5150
import styles from './Something.module.css';
5251

5352
function Something() {
54-
return (
55-
<div className={styles.wrapper}>
56-
I'll be 500px wide!
57-
</div>
58-
);
53+
return <div className={styles.wrapper}>I'll be 500px wide!</div>;
5954
}
6055
```
6156
@@ -113,7 +108,6 @@ On mobile devices, the cards should stack horizontally, and sit near the bottom
113108

114109
**NOTE:** This is a challenging stretch goal! It may require some CSS features we haven't covered yet. This is meant as an extra challenge for advanced students. Feel free to skip it!
115110
116-
117111
## Submissions
118112
119113
**Workshops are submitted through the course platform.** Commit your changes, push them to your fork, and submit the link by clicking the "Complete lesson" button on the workshop page.

0 commit comments

Comments
 (0)