// eslint-disable-next-line @typescript-eslint/no-unused-vars import React, { useState } from 'react'; // import styled from 'styled-components'; // import Tag from '../lib/Tag/Tag'; // import TagGroup, { Tags } from '../lib/Tag/TagGroup'; // // const Wrap = styled.div` // display: flex; // flex-direction: column; // gap: 50px; // justify-content: center; // align-items: start; // `; // // const Home: React.FC = () => { // const close = (el: HTMLDivElement) => { // console.log(el); // }; // // const [tags, setTags] = useState([ // { id: '1', tagContent: 'purple', color: '#FFFFCC' }, // { id: '2', tagContent: 'magenta', color: 'magenta' }, // { id: '4', tagContent: 'gold', color: 'gold' }, // { id: '5', tagContent: 'gold', color: 'gold' }, // { id: '6', tagContent: 'gold', color: 'gold' }, // { id: '7', tagContent: 'gold', color: 'gold' }, // { id: '8', tagContent: 'gold', color: 'gold', closeable: true }, // { id: '9', tagContent: 'gold', color: 'gold', closeable: true }, // { id: '10', tagContent: 'gold', color: 'gold', closeable: true } // ]); // const tagsChange = (tag: Tags) => { // console.log(tag); // }; // return ( // //
// purple // purple // purple // magenta // red // orange // gold // lime // green // cyan // blue // black // purple // // purple // //
//
// //
//
// //
//
// ); // }; // // export default Home;