Skip to content

PreethiPantangi/FrontendMachineCoding

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Practicing Front end machine coding questions

1. Nested Comments

Structure of the nested comments

{
  id: 1,
  comment: 'Comment 1',
  replies: [
    {id: 2,
      comment: 'This is reply 1',
      replies: {
        id: 3, 
        comment: 'This is reply 1 for reply 1'
      }
    },
    {id: 3,
      comment: 'This is reply 2',
      replies: {
        id: 4, 
        comment: 'This is reply 1 for reply 2'
      }
    }
  ]
},
{
  id: 5,
  comment: "Happy New Year to everyone. What are your resolutions for this year?",
  replies: [
    {
      id: 6,
      comment: "This is reply 1 for comment 2"
    },
    {
      id: 7,
      comment: "This is reply 2 for comment 2"
    }
  ]
}

2. Modal Component

3. Tab Feature

About

Solving challenges that may be presented in Frontend Machine Coding Round

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors