Skip to content

Instantly share code, notes, and snippets.

View xamedow's full-sized avatar
🏠
Working from home

Andrey Khamedov xamedow

🏠
Working from home
View GitHub Profile
@xamedow
xamedow / README.md
Created October 20, 2020 14:22
UULA test app description

Uula Frontend Test Application

Your task is to create comments section component with ability for the client to create/read/update/delete/like/dislike/complain comments

Comments section should be located at the comment page of the app '/comments'

Initially you should request a list of existing comments at the API endpoint and if there are none - show empty list placeholder

Each comment could be unfolded and show a list of replies if any, replies should be also provided with CRUD controls

@xamedow
xamedow / index.tsx
Created October 4, 2022 14:58
Slider implementation
import React, {
Children,
cloneElement,
ReactElement,
useContext,
useEffect,
useRef,
useState,
} from 'react';
import classNames from 'classnames/bind';