/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
shared/settings/web-links.tsx
11 строк
280 B
chrisnojima-zoom
Version 670 - clean2 (#29122)
08 июн 2026, 19:31
Не верифицирован
08 июн 2026, 19:31
1943197
Код
Авторство
О чём код?
import * as Kb from '@/common-adapters' type Props = {url: string; title?: string} const WebLinks = (props: Props) => ( <Kb.Box2 direction="vertical" fullWidth={true} fullHeight={true}> {props.url && <Kb.WebView url={props.url} />} </Kb.Box2> ) export default WebLinks