/
githubmirror
/
carbon
Обзор
Документация
Войти
/
githubmirror
/
carbon
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.7.21
components/PhotoCredit.js
27 строк
592 B
Jake Dexheimer
Use Unsplash API (#301)
08 апр 2018, 03:19
08 апр 2018, 03:19
cf1e92b
Код
Авторство
О чём код?
import React from 'react' export default ({ photographer }) => ( <div className="photo-credit"> Photo by{' '} <a href={`${photographer.profile_url}?utm_source=carbon&utm_medium=referral`}> {photographer.name} </a> <style jsx> {` .photo-credit { cursor: unset; user-select: none; text-align: left; font-size: 10px; color: #aaa; margin-bottom: -2px; } .photo-credit a { cursor: pointer; text-decoration: underline; } `} </style> </div> )