/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
test/development/basic/barrel-optimization/fixture/components/slow-component.js
77 строк
2 KB
Sebastian "Sebbie" Silbermann
Remove unused `eslint-disable` directives (#84797)
13 окт 2025, 00:17
Не верифицирован
13 окт 2025, 00:17
6feaddf
Код
Авторство
О чём код?
'use client' import { IceCream, BackpackIcon, LucideActivity, Code, Menu, SortAsc, SortAscIcon, LucideSortDesc, VerifiedIcon, CurlyBraces, Slash, SquareGantt, CircleSlashed, SquareKanban, SquareKanbanDashed, Stars, Edit, Edit2, LucideEdit3, TextSelection, createLucideIcon, } from 'lucide-react' import { Tab, RadioGroup, Transition } from '@headlessui/react' export function Comp() { globalThis.__noop__ = createLucideIcon return ( <> <IceCream /> <BackpackIcon /> <LucideActivity /> <Code /> <Menu /> <SortAsc /> <SortAscIcon /> <LucideSortDesc /> <VerifiedIcon /> <CurlyBraces /> <Slash /> <SquareGantt /> <CircleSlashed /> <SquareKanban /> <SquareKanbanDashed /> <Stars /> <Edit /> <Edit2 /> <LucideEdit3 /> <TextSelection /> <Tab.Group> <Tab.List> <Tab>Tab 1</Tab> <Tab>Tab 2</Tab> <Tab>Tab 3</Tab> </Tab.List> <Tab.Panels> <Tab.Panel>Content 1</Tab.Panel> <Tab.Panel>Content 2</Tab.Panel> <Tab.Panel>Content 3</Tab.Panel> </Tab.Panels> </Tab.Group> <RadioGroup> <RadioGroup.Label>Plan</RadioGroup.Label> <RadioGroup.Option value="startup"> {({ checked }) => <span>{checked ? 'checked' : ''} Startup</span>} </RadioGroup.Option> <RadioGroup.Option value="business"> {({ checked }) => <span>{checked ? 'checked' : ''} Business</span>} </RadioGroup.Option> </RadioGroup> <Transition show>I will fade in and out</Transition> </> ) }