-
Notifications
You must be signed in to change notification settings - Fork 53
Meme generator #13 #63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
src/pages/activities/RandomMemes.js
Outdated
| <h1>Random Meme Generator</h1> | ||
| <div>Enter the name of Reddit community you want to get memes from.</div> | ||
| <div> Some examples are animememes, dankmemes, wholesomememes, etc. Submit empty box to get random memes</div> | ||
| <input className="rmeme-text" placeholder="Enter name of community here" id="text" type="text" onChange={GetName}></input> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use a more unique id than text, rest lgtm
Ishwarendra
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
By CLS, I mean other |
Ok, will do so. Also, API used searches for memes from posts in Reddit communities. The community name for getting chess memes is r/chessmemes so putting chessmemes in the input box should work. Also, it produces related memes after clicking generate memes after clicking submit. Just after clicking submit it produces meme related to previous topic. To solve this what I can do is not generate any meme on clicking submit and generate meme only when clicking generate meme. |
Ishwarendra
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@GauravGupta993 While you are at the cls issue, write in small font about the example.
For example, if user has to type r/chessmemes then there should be a text For example: r/chessmemes will return chess memes, so that user knows what to type in the box.

#13 Solved.
Made a new PR because some conflicts were appearing due to which I had to discard the commit that closed the previous PR.