/
githubmirror
/
styled-components
Обзор
Документация
Войти
/
githubmirror
/
styled-components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/benchmarks/src/implementations/tailwind/View.js
16 строк
376 B
Evan Jacobs
chore(bench/sandbox): ios-benchmark, perf suites, and sandbox updates
19 май 2026, 06:53
19 май 2026, 06:53
96f3bdf
Код
Авторство
О чём код?
import React from 'react'; const View = React.forwardRef(({ className, ...other }, ref) => ( <div ref={ref} className={ 'flex flex-col items-stretch shrink-0 basis-auto border-0 border-solid box-border relative m-0 p-0 min-h-0 min-w-0' + (className ? ' ' + className : '') } {...other} /> )); View.displayName = 'View'; export default View;