[COMPLETE PROJECT 🔥] 10 LPA Job Guaranteed with This React Project!

Поделиться
HTML-код
  • Опубликовано: 24 дек 2024

Комментарии • 821

  • @sarthak-sharma7
    @sarthak-sharma7 2 месяца назад +260

    As promised, here's the link to the complete source code! 👇
    github.com/saarthack/ems
    Start building! 🔥❤

    • @haaha481
      @haaha481 2 месяца назад

      Nice😊

    • @Super_Hero_G
      @Super_Hero_G 2 месяца назад

      Sir app ko deploy kaise karen please bata do🤪

    • @amanchoudhary7414
      @amanchoudhary7414 2 месяца назад +5

      Bhaiya literally wow 🤌.... Kya kahu .... Ek hi dil to hai..... kitni baar jitoge....

    • @callsignmaverick-c5o
      @callsignmaverick-c5o 2 месяца назад +1

      10 lpa project hai kya hai?😂😂

    • @Yash_kumar_halder
      @Yash_kumar_halder 2 месяца назад +2

      Animated website using react please ❤
      ( gsap, scrolltTrigger, sheryjs )
      Please jaldi video lao mera college hackathon ke kam ayega.🥹🥹

  • @PythonCourse-j4l
    @PythonCourse-j4l Месяц назад +21

    we support sheryians and want more projects with full backend in mern

  • @kamranshah-v1m
    @kamranshah-v1m Месяц назад +20

    2:03:09, those who are confused, why the user is not being set even after he has set the role, which is clearly visible in localstorage, the reason is that he has not converted it to javascript object, he forgot to use JSON.parse() in useEffect, which resulted in being user as undefined.

  • @bollywoodmeets-hollywood
    @bollywoodmeets-hollywood 2 месяца назад +40

    Yes, we want backend in this project.

  • @abeehazainab193
    @abeehazainab193 2 месяца назад +11

    Your energy is incredible-that’s exactly why you’re making such an impact here. 🎊

  • @gouravthakur8094
    @gouravthakur8094 2 месяца назад +20

    kaafi sahi leel ka project hai, definitely want more of this content!!

  • @bhuvana4060
    @bhuvana4060 Месяц назад +25

    Well, guys the problem at 4:08:54 (empty object at 3) is pretty simple to resolve if you know how React works, and no, it is not because of strict mode. The reason for this is that we are using setNewTask (useState) to create a new object on submit, and we are pushing newTask into elem right after the setNewTask. Now React state updates are asynchronous. This means that when you try to push newState into elem while the object inside setNewTask has not yet been created, it still has an empty object. due to which every time your first push will be an empty object (as while state creation it was initialized).
    If you still didn't understand here is something:
    1) const [newTask, setNewTask] = useState({});
    2) setNewTask({
    taskTitle,
    taskDescription,
    taskDate,
    category,
    active: false,
    newTask: true,
    failed: false,
    completed: false,
    });
    3) elem.tasks.push(newTask);
    Now 1 will run first, seNewTask is asynchronous which means it will take time so 3) will run , now when 3) runs before 2) newTask has an empty object . Now after 3) runs your 2) will run . hope this makes sense.
    FIX:
    you don't need a state just use a constant function.
    code___________________________________________:
    const submitHandler = (e) => {
    e.preventDefault();
    const newTask = {
    taskTitle,
    taskDescription,
    taskDate,
    category,
    active: false,
    newTask: true,
    failed: false,
    completed: false,
    };
    const data = userData;
    data.forEach(function (elem) {
    if (asignTo === elem.firstName) {
    elem.tasks.push(newTask);
    elem.taskCounts.newTask = elem.taskCounts.newTask + 1;
    }
    });
    setUserData(data);
    console.log(data);
    setTaskTitle("");
    setCategory("");
    setAsignTo("");
    setTaskDate("");
    setTaskDescription("");
    };
    Hope this is helpful guys

    • @ASHER-er9nq
      @ASHER-er9nq Месяц назад

      Hii , can you give your source code for this project

    • @ASMITPHUYAL-y2i
      @ASMITPHUYAL-y2i Месяц назад

      or we could just use async await ..?

    • @bhuvana4060
      @bhuvana4060 Месяц назад +2

      @@ASMITPHUYAL-y2i yup do you want to complicate , why use state and then an async function for something which can be solved using a const

    • @truptibalbudhe6987
      @truptibalbudhe6987 Месяц назад

      @@ASMITPHUYAL-y2i we cannot use async await. It will not work

    • @akaCh4se
      @akaCh4se Месяц назад

      so, we should remove the setTask state, and are you gettting the userData from the authContext like sarthak did?

  • @aryansebastian3439
    @aryansebastian3439 2 месяца назад +18

    Best RUclips channel for web development 💯

  • @mad-pn3nq
    @mad-pn3nq 2 месяца назад +39

    Yt kholthe hi video recommend hua meri Khushi batha nahi saktha❤

  • @sharmastyles2749
    @sharmastyles2749 2 месяца назад +15

    3:13:20 see the date this video is recorded on 14 oct ! Really Sheriyans are working very hard for us!

  • @omkarmandal8138
    @omkarmandal8138 7 дней назад

    Thank You ! Your Content is One of a kind and is what is required in current scenario. This is the best way to learn it . I've seen many other tutorials none were as good as this video because here you make mistakes and teach us how to solve them.Keep up the Good Work. I wish this channel makes more traffic.

  • @usmanazhar1877
    @usmanazhar1877 2 месяца назад +6

    yrr bhaiya mn yehi wait krraha ttha aj 17 oct hai react project dalna tha apnay aur bs foran youtbe pay agaya ❣️❣️❣️abhi betha hn dekhnee amazing love from
    pakistan bhaiya❤️❤️❤️you guyz are amamzinggh

  • @tejasshelke2081
    @tejasshelke2081 Месяц назад +3

    Nice project brother, i just completed the project and came here to appreciate you and harshbhaiya for such an amazing content . I would love to saw more videos like this some more complex project

  • @aakashdeep_2310
    @aakashdeep_2310 2 месяца назад +8

    we need full mern series, with full stack projects

  • @sandeepgajanan
    @sandeepgajanan Месяц назад +1

    Thank you, bhayya. I genuinely appreciate how you tackle projects freshly and show us the errors and how to fix them. It makes the learning process so much more authentic and relatable. Big thanks to Sheriyans for making me realize that you always need to go through trial and error to achieve success.❤

  • @blondigaming3235
    @blondigaming3235 2 месяца назад +3

    Thanks for starting a series like this

  • @thakurutkarshpratapsingh262
    @thakurutkarshpratapsingh262 2 месяца назад +5

    i saw your react last video, amazing and from then only we were waiting for tailwind

  • @abofficial173
    @abofficial173 2 месяца назад +24

    At 23 Oct 2024, completed till 1:10:00.
    Soon will complete the full project InshaaAllah 💪🏻
    Thanks for the video.

    • @shouryamittal5500
      @shouryamittal5500 Месяц назад +1

      Has you completed it?

    • @FatimaMadeIt
      @FatimaMadeIt Месяц назад

      @@shouryamittal5500 *Have

    • @techsavy5669
      @techsavy5669 10 дней назад

      After you get that salary, let us know. I will also start watching it.

  • @tusharrai4080
    @tusharrai4080 Месяц назад +5

    project done.......gonna add more functionalities to it⌛❤‍🔥

    • @AllAboutTechnolog
      @AllAboutTechnolog Месяц назад

      Bro can you provide ur GitHub link I'm facing issues

    • @RoronoaZoro78687
      @RoronoaZoro78687 16 дней назад +1

      1:26:56 muje console me null ku aaraha hai koi bato psss pzzzz pzzzz bhot try kiya solution nahi milra

  • @slayersiddheshg386
    @slayersiddheshg386 2 месяца назад +9

    bhaiya video ke starting me dikhya karo ki end product kaise dikhne wala hai
    or ek overview diya karo

  • @codersproject
    @codersproject 2 месяца назад +137

    ❤1 like = Job

    • @gachawings
      @gachawings 2 месяца назад +5

      ❤1 like = 1 Project 😏

    • @hypernoob5916
      @hypernoob5916 2 месяца назад +4

      ha tere pe comment karne se hi toh job mil rhi, agar aisi harakte karte rahe to sabka to pta nhi tera to nhi hi lagega

    • @sujatamali31
      @sujatamali31 Месяц назад

      Bro😂

  • @healingyoupawer3563
    @healingyoupawer3563 2 месяца назад +28

    Bhai mene aapka channel dosto ke saath share nhi 😢 kiya kyunki aap padhate ho hi itna acha ki kisi or ko btane ka man hi nhi karta 😅😅😅❤❤❤❤

    • @MANISHKUMAR-wb7hc
      @MANISHKUMAR-wb7hc 2 месяца назад +2

      Us bro us😂😅

    • @Aryman3762
      @Aryman3762 2 месяца назад

      Same Bhai Mene Bhi Kisi Ko Nhi Bataya

    • @mr.rising5691
      @mr.rising5691 2 месяца назад

      Literally Bhai us 😅

    • @healingyoupawer3563
      @healingyoupawer3563 2 месяца назад

      @@MANISHKUMAR-wb7hc bhai mere dost ka naam bhi manish hi hai😅😅

    • @anishtanvar2302
      @anishtanvar2302 2 месяца назад +1

      Lekin bhai tere dost bhi tujhe bina btaye SHERYIANS CODING SCHOOL ko hi dekhte honge🤣🤣🤣🤣

  • @onkardheemate1066
    @onkardheemate1066 2 месяца назад

    yesterday i complited react js course and today you just uploaded next video ..thank you so much

  • @huzaifamukhtar5667
    @huzaifamukhtar5667 2 месяца назад +9

    One of the world best instructor love from Pakistan ❤❤

  • @mdtouhidulislam8705
    @mdtouhidulislam8705 13 дней назад

    Thanks for giving this type of project video...REally, I've learned a lot. I'd low idea of how to and where to and when to use states, useEffects, UseContext, forEach, find etc etc...after, your project video i've learned a lot and also got some confidennce.. I hope you'll upload this type of project in the incoming days...and with your this project video, it took me to 15-16 days to make this project by myself...
    thank vaiya...

  • @RoronoaZoro78687
    @RoronoaZoro78687 19 дней назад +1

    Bhot sahi bhaiya bhot hard 🎉🎉🎉

  • @1anu_ra-dha.
    @1anu_ra-dha. 23 дня назад

    finally completed this project .Thanks bhai🙇‍♀

  • @harshavardhan7074
    @harshavardhan7074 Месяц назад +1

    motivation in the middle 🔥💯

  • @sahilgupta7001
    @sahilgupta7001 2 месяца назад +13

    No hate, but without using backend how can you say this project is a industry level project, real work starts only when there is backend, I may be partially wrong but one thing is for sure that I am not totally wrong

    • @sufiyanmogal1527
      @sufiyanmogal1527 2 месяца назад

      yes backend is the brain of the project but now the viewers don't know backend bro if you u can implement by yourself just learn from anywhere dont depend on any one,

    • @user-cs8lu1gk6i
      @user-cs8lu1gk6i Месяц назад

      yess,, i was thinking the same,, as a 10 LPA kind of industry grade project, it should be like first creating the highlevel and then low level system design all the apis gonna build data models etc.,, then if you wanna complete the frontend part first, mimicing incoming data by using dumy data is fine,, or better built the backend first(my opinion). though its just my opinion , it depends on how do the developer vision and after all the results matter. Again its just an opinion.

  • @sagnikmukherjee5781
    @sagnikmukherjee5781 2 месяца назад +2

    God of youtube learning industry is back ❤

  • @tushxr05
    @tushxr05 27 дней назад +1

    please ase projects ki video ooor bhi layo, mza agya is project ko bna😉😁

  • @CodeCrafte_r
    @CodeCrafte_r 2 месяца назад +2

    We want Mern stack projects ❤❤❤❤❤❤❤

  • @m.h.wasimelahi3878
    @m.h.wasimelahi3878 2 месяца назад +11

    Bhai full mern Stack base project bnwao plz humne front end aur backend ki communication seekhni ha 😊

    • @montogaming7239
      @montogaming7239 2 месяца назад +1

      Bhai Aisa kuch tutorial/end to end wala video Mila kya tumko ki dono Sikh saken frontend and backend aur uska dono ke bich ka communication😊

  • @chatterjeeprotyusha
    @chatterjeeprotyusha Месяц назад +1

    Doneeeeee,,Completed and also created😭😭❣❣

  • @BeastGuru52
    @BeastGuru52 2 месяца назад

    Best React Project With Great Explanation and Beginer can make this project easily and simply.

  • @aviop9028
    @aviop9028 2 месяца назад +1

    Thank you sarthak bhai for this vedio(reach badhne keliye comment kiya h).

  • @full_stack_developer-ih4gc
    @full_stack_developer-ih4gc 20 дней назад

    incredible project love it 😍😍😍😍

  • @AzanKhan-hw9df
    @AzanKhan-hw9df 2 месяца назад +1

    You Are Great Developer love From Pakistan ❤❤❤❤❤❤

  • @codingbabus.s6214
    @codingbabus.s6214 2 месяца назад +1

    Hi sarthak it's really a great project anyone can understand easily

  • @PrajwalPatil-qs2wh
    @PrajwalPatil-qs2wh 2 месяца назад +2

    Nice video bro it would be very help full for any one who has finished the learning phase of react and willing to go to project phase make few more context of this sort...!

  • @harshalmasram85
    @harshalmasram85 2 месяца назад +8

    Mujhe pta hai ye project bana kar koi 10lpa ki job wob nhi lagne wali par fir bhi practice ke liye dekh rha hu 😅

    • @mannujr.685
      @mannujr.685 Месяц назад

      i wonder Internship bhi lagegi ya nhi

  • @sanipatel4829
    @sanipatel4829 2 месяца назад +4

    Love from Gujarat ❤

  • @ahmadsajjad5720
    @ahmadsajjad5720 2 месяца назад +7

    Thkx brother waiting for this video 😊😊😊

  • @luckkkyyyy56
    @luckkkyyyy56 2 месяца назад +1

    Love ur content ❤

  • @Snehasharnagatshorts
    @Snehasharnagatshorts 2 месяца назад +1

    Feeling glad that i am studying at offline centre....

  • @MuhammadHaris-rt7wx
    @MuhammadHaris-rt7wx 2 месяца назад

    Was waiting for this! For past couple of days

  • @psvvlogs9432
    @psvvlogs9432 2 месяца назад

    bro your way of teaching is superb

  • @prakshitgodsera745
    @prakshitgodsera745 2 месяца назад +1

    🥺 sharthak bhaiya 🎉apki mehnat dekh mere aankh 🥺bhar atain h.
    Jitna v video h apki sab mast h .🎉

  • @mohdanasshaikh20
    @mohdanasshaikh20 Месяц назад +1

    Bhai itni achchi video banai mager local storage ke data wagera mai bht bhapla diya aap ne

  • @sufiyanmogal1527
    @sufiyanmogal1527 2 месяца назад +3

    we need a full stack project

  • @107tejasjadhav9
    @107tejasjadhav9 Месяц назад

    we want backend on this project.....🔥🔥🔥🔥

  • @iabhaysharma
    @iabhaysharma 2 месяца назад +2

    Good work bro ❤

  • @jawadmdkhn
    @jawadmdkhn 2 месяца назад

    This will Change of many peoples life❤

  • @anshupatel6041
    @anshupatel6041 2 месяца назад +1

    Thanks sarthak, i'll complete those comments

  • @jane_rosso
    @jane_rosso 2 месяца назад

    addicted to this channel 🐲💗

  • @ShivikaGarg-g2l
    @ShivikaGarg-g2l 2 месяца назад

    amazing work by Sheryians team

  • @KRISHNAPRASAD-x4f
    @KRISHNAPRASAD-x4f 2 месяца назад +3

    Hi bro love your videos great explanation ❤

    • @harshsharma523
      @harshsharma523 2 месяца назад

      Pichhle videos ki baat kr raha hai wo

  • @PythonCourse-j4l
    @PythonCourse-j4l Месяц назад

    we want more projects like this

  • @iamUtcurse
    @iamUtcurse 2 месяца назад

    4hrs straight upp without bakwaas TYSM bhaiya ❤

  • @relsb5536
    @relsb5536 Месяц назад

    Thank you sheryians 💕

  • @hamudxd9497
    @hamudxd9497 24 дня назад

    BUHUT BADHIYA ❤

  • @white_code7736
    @white_code7736 2 месяца назад

    Very very very good explanation bhaiya ❤

  • @white_code7736
    @white_code7736 2 месяца назад

    Bestest explanation bhai❤

  • @junaidkhn9979
    @junaidkhn9979 10 дней назад +1

    1:39:40 admin dashboard or user dashboard wali conditional statement wrong h as uska else wala part joki employee dashboard ko render krti h wo humesha true rhegi.
    (proof - u can see the scroll bar coming in right the dashboard is rendered below the login page)

    • @NihitGupta-dw4pb
      @NihitGupta-dw4pb 5 дней назад +1

      {!user ?:''}
      {user=='admin'?:(user == 'employee' ? :null)}
      This is updated code for anyone who need

  • @RishiPandey-s2h
    @RishiPandey-s2h 2 месяца назад

    This is crazy video thanks for sheriyans coding school

  • @amanbhaisare5058
    @amanbhaisare5058 2 месяца назад +1

    Great Work Sir

  • @Faizk15501
    @Faizk15501 2 месяца назад

    we want more projects videos like this

  • @suhaib_nisar
    @suhaib_nisar Месяц назад

    Bro such a great project just make another full stack project after uploading backend with industry standards

  • @ZainSarwar-m5v
    @ZainSarwar-m5v 2 месяца назад +1

    Nice content 🎉

  • @raselak-dc7lk
    @raselak-dc7lk 2 месяца назад

    Nice😊 & Thanks for this project

  • @princechouksey_004
    @princechouksey_004 2 месяца назад +1

    Amazingggg 🎉

  • @BeastGuru52
    @BeastGuru52 2 месяца назад

    kya padhaya hy sirr. bilkul sbb kuch clear ho gya aik aik cheez!!!

    • @aryakakade929
      @aryakakade929 2 месяца назад

      have you completed this project

    • @BeastGuru52
      @BeastGuru52 2 месяца назад

      @@aryakakade929 almost

    • @Call_Me_Mortis
      @Call_Me_Mortis 2 месяца назад

      @@BeastGuru52 hey bro can u give me the source code

    • @BeastGuru52
      @BeastGuru52 Месяц назад

      @@Call_Me_Mortis sir may nay context ki jaga redux use kiya hy chahiye hy tu btao

  • @ethicalhacker9205
    @ethicalhacker9205 2 месяца назад

    Nice & Thanks for this Project👋

  • @muhammadbakhsh7780
    @muhammadbakhsh7780 2 месяца назад

    Me ne apse aur harsh Bhai se buhut Kuch seekha h. So many many thanks🎉

  • @nithenbains
    @nithenbains 2 месяца назад +1

    Amazing Project

  • @tarunboddeda4884
    @tarunboddeda4884 Месяц назад +2

    Sir, Figma ka File Agar provide krte toh khud se practice krte agar kahi pe dikat aata toh phir apke tutorial follow krte....😇

  • @abhishekparmar5207
    @abhishekparmar5207 Месяц назад +1

    Sheriyans ❌
    Goats ✅

  • @pardeepsingh2365
    @pardeepsingh2365 2 месяца назад

    Thankyou so much for this amazing project❤❤

  • @CricketFanClubvm1wy
    @CricketFanClubvm1wy 2 месяца назад

    Thank u so much ❤❤❤.
    Love u all sheriyans

  • @Loko-q7n
    @Loko-q7n 2 месяца назад

    video dekhne me maza to aata hai bhai, thanks for the project

  • @farmanali3436
    @farmanali3436 2 месяца назад +2

    First View Love From Pakistan ❤👍🏻 Shreyans will Takeover is all over RUclips in the future. This is not a prediction this is a spoiler 💀

  • @sunitalaychetty3197
    @sunitalaychetty3197 2 месяца назад +1

    Awesome ❤️❤️❤️❤️❤️

  • @healingyoupawer3563
    @healingyoupawer3563 2 месяца назад +2

    Thankyou so much Bhai❤❤❤❤❤❤

  • @ShubhamChakraborty03
    @ShubhamChakraborty03 2 месяца назад

    great will be waiting for backend project of the same 🔥🔥

  • @sbgmi01291
    @sbgmi01291 2 месяца назад

    Thankyou Brother for giving us your important knowledge

  • @paramitabiswal7110
    @paramitabiswal7110 2 месяца назад

    Wonderful project bhaiya ji🙏
    Thank you so much

  • @MdKabir-ux1dg
    @MdKabir-ux1dg 2 месяца назад

    Great project 💯

  • @vishwaskumar2508
    @vishwaskumar2508 2 месяца назад +1

    Thank you so much for this video, love from bangalore ❤❤❤

  • @Snehasharnagatshorts
    @Snehasharnagatshorts 2 месяца назад

    Thank you bhaiyya for providing such projects..

  • @dkisback6072
    @dkisback6072 2 месяца назад +1

    1:42:43 मोक्ष (Moksh)

  • @webByTalha
    @webByTalha 2 месяца назад

    Love From Pakistan. Really Amazing Playlist.

  • @FaizanRaza-f2x
    @FaizanRaza-f2x 2 месяца назад +2

    Love from Pakistan ❤🎉. Although you don't accept it but still sending it over🎉😊. Learned a lot from you!

    • @rakshii4962
      @rakshii4962 2 месяца назад +3

      Bhai tumhe roti miltihe kay?😂

    • @msd7rishi514
      @msd7rishi514 2 месяца назад

      @@rakshii4962 bhai tumhe आटा milta hai kya aisa puchhna chahiye tha roti to door ki baat hai 😂

    • @muzamilsattar494
      @muzamilsattar494 2 месяца назад

      @@msd7rishi514 han bro sab milta hay 😂😂😂😂 per mehnga bahut hay 😁

    • @alirana9244
      @alirana9244 2 месяца назад

      ​@@rakshii4962han milti ha beef ke sath 😂😂😂😂

    • @rakshii4962
      @rakshii4962 2 месяца назад

      @@alirana9244 bro vo beef he ya suar dheklo

  • @ShuvaPatra-w7b
    @ShuvaPatra-w7b 2 месяца назад

    Great Work !!!!!

  • @Rahul-jo1mp
    @Rahul-jo1mp Месяц назад +1

    4:9:00 Last me useState se form handle kiya he apne isliye task null print ho raha he

  • @nileshawachat8166
    @nileshawachat8166 2 месяца назад

    Bhai sukoon mil raha jobless baithe hai tension, depressions ka virus ghussa hai ye Suraj ke kirne mili toh toda khula lag raha hai

  • @Barbi-007
    @Barbi-007 2 месяца назад

    Watching From Pakistan Following MERN Series

  • @kaleemsipraa
    @kaleemsipraa 2 месяца назад

    Thank you sir love from PAKISTAN ❤❤

  • @goutamhalder2948
    @goutamhalder2948 2 месяца назад

    Thanks sir for this wonderful video❤❤❤❤❤❤

  • @aayushigorania5542
    @aayushigorania5542 2 месяца назад

    Love you sheryians ❤❤❤

  • @shikhargaur4160
    @shikhargaur4160 2 месяца назад

    hamesha ki tarah quality content