wip[org]: Added new... page
This commit is contained in:
parent
e4c562693c
commit
bc584399e2
18 changed files with 348 additions and 174 deletions
|
@ -34,3 +34,16 @@ export const Link = ({ href, title = false, children, className = linkClasses })
|
|||
{children}
|
||||
</a>
|
||||
)
|
||||
|
||||
const BaseLink = Link
|
||||
|
||||
export const CardLink = ({ href, title, Icon, children, Link }) => {
|
||||
if (!Link) Link = BaseLink
|
||||
|
||||
return (
|
||||
<Link className="">
|
||||
{title}
|
||||
{children}
|
||||
</Link>
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue