happiness (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) happiness

react

reactのLinkでダウンロードボタン作る

2020-12-18 15:52:28 antd使ってるけど、違うcomponent使えばOKなはず import * as React from 'react' import { Button } from 'antd' import { DownloadOutlined } from '@ant-design/icons' import { Link } from 'react-router-dom' export const Downlo…

Reactのcomponent内で無理やりstyleタグを使う方法

return ( <> <style> .ant-select-selector {'{'} background: red !important; {'}'} </style> <SomeComponent /> antdなど使っているとSelectコンポーネントの親に対して、styleを定義したい時がある。 cssファイル書きたくない、compoentnt作りたくない、ちょこっとcssだけ書けばいいを目</somecomponent>…

【react】Each child in a list should have a unique "key" prop. でIn Fragmentのときの修正

エラー内容 Warning: Each child in a list should have a unique "key" prop. <中略> In Fragment In Fragmentを勝手にGraphQLのFragmentと勘違いしてしまいハマってしまった。 直し方 before {categories.map((category) => ( <> )} after <>ではなく、Re…