/
githubmirror
/
styled-components
Обзор
Документация
Войти
/
githubmirror
/
styled-components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/benchmarks/src/implementations/styled-jsx/View.js
20 строк
391 B
Evan Jacobs
chore: remove eslint
03 фев 2023, 19:37
03 фев 2023, 19:37
cffda28
Код
Авторство
О чём код?
import React from 'react'; import css from 'styled-jsx/css'; export const style = css` align-items: stretch; border-width: 0; border-style: solid; box-sizing: border-box; display: flex; flex-basis: auto; flex-direction: column; flex-shrink: 0; margin: 0; padding: 0; position: relative; min-height: 0; min-width: 0; `; export default props => <div {...props} />;