Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All solutions

  • Submitted

    APIs

    • HTML
    • CSS
    • JS
    • API

    0

  • Submitted

    SCSS + React

    • HTML
    • CSS
    • JS
    • API

    0


    Hi everyone!

    This is actually my first project from the medium level and I feel proud of myself for finishing it.

    I learned about the prefers-color-scheme media query and also about the hyphens property

    .main-word {
      word-wrap: break-word;
      hyphens: auto;
    }
    
    useEffect(() => {
      if (window.matchMedia("(prefers-color-scheme:dark)").matches) {
        setIsDark(true);
      } else {
        setIsDark(false);
      }
    }, []);
    

    I would appreciate any feedback on how I can improve my code. Thank you in advance!

  • Submitted


    It was a challenging one. I got to use window.matchMedia() for the first time and I'm happy I added something new to my knowledge.

    I would appreciate any feedback on how I can improve my code. Thank you in advance

  • Submitted


    I would appreciate any feedback on how I can improve my code. Thank you in advance.

  • Submitted


    One of the best Challenges to test our hooks. I used useState, useEffect, useRef, useContext and useReducer hooks in this application. I even managed to create my own custom hook afterwards to refactor some of the code.

    I'd appreciate any feedback on how I can improve at React in order to be a better programmer.

  • Submitted


    This is My first ever Project to implement anything really in TypeScript, SCSS and React. I've been learning all of them recently and decided to begin practicing on something that I have done before using HTML and CSS and I had an amazing experience. I can't wait to do my next challenge using the same technologies and I'd extremely appreciate any feedback.

  • Submitted


    Although it says it's a newbie challenge. It was indeed challenging for me as I'm a beginner and I'm still learning JS. The hard part for me was not to make the Q&A toggle each time the user clickes on it, but also to close the other open questions while another question is open.

    I'd appreciate any feedback.

  • Submitted


    I'm still learning Javascript and I found this challenge really helpful as it's the first frontend mentor challenge I take with JavaScript included & I think the idea of the application works, but I have a problem that I couldn't fix in my code:

    In my application, the user can click any or even all of the 5 ratings at the same time and in this case the last one is the one that's gonna be counted and I wonder how can I make that possible for only one option to be clicked at a time.

    I'd appreciate any feedback and any answer on my question

  • Submitted


    Any feedback on how I can improve will be appreciated.