MCPcopy Create free account
hub / github.com/callstack/react-native-paper / ExtendsLink

Function ExtendsLink

docs/src/components/ExtendsLink.tsx:3–21  ·  view source on GitHub ↗
({
  name,
  link,
}: {
  name: string;
  link?: string;
})

Source from the content-addressed store, hash-verified

1import React from 'react';
2
3export default function ExtendsLink({
4 name,
5 link,
6}: {
7 name: string;
8 link?: string;
9}) {
10 return (
11 <div key={name} className="extends">
12 <i>Extends: </i>
13 <a key={name} href={link}>
14 <code>
15 ...
16 {name}
17 </code>
18 </a>
19 </div>
20 );
21}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…