IEEE-RVCE / IEEE-RVCE.github.io

Development site of only frontend
https://ieee-rvce.org
1 stars 2 forks source link

Change lipsum and fix comments #10

Closed chrisvrose closed 4 years ago

chrisvrose commented 4 years ago

Fixes

Comments

This will fail:

return (
    {/*someComment*/}
    <Component>
        <Bar />
    </Component>
);

Alternatives:

return (
    <Component>
        {/*someComment*/}
        <Bar />
    </Component>
);
// someComment
return (
    <Component>
        <Bar />
    </Component>
);

Notes