counter-test-datagile
v0.1.1
Published
Тестовое задание со счетчиками для Datagile
Maintainers
Readme
Тест задание со счетчиками для Datagile
Демонстрация на Vercel
Инструкция для установки npm package
npm i counter-test-datagileВ приложении:
import Counter from 'counter-test-datagile';
import 'counter-test-datagile/dist/style.css';
const MyComponent = () => {
return (
<>
<Counter />
</>
);
};Инструкция для репозитория
git clone https://github.com/ilyasudakov/counter-test-datagile.git
cd counter-test-datagile
npm run startСтек
- React / Typescript
- Redux
- Tailwind
Решил разбить компонент Counter на базовый (BasicCounter) и дочерние (CounterWithInterval, CounterWithControls) в соответствии с Liskov principle из SOLID.
