Sha256: 3d863d7b6e10afabfaf46681e389c51ce353bfcc48ac21b2b3534108d28e3cb2
Contents?: true
Size: 758 Bytes
Versions: 94
Compression:
Stored size: 758 Bytes
Contents
import React from 'react' import { Nav } from '../../' import NavItem from '../_item.jsx' const NewTab = (props) => ( <Nav link="#" orientation="vertical" title="Popular Websites" {...props} > <NavItem link="https://www.google.com/" target="_blank" text="Google" {...props} /> <NavItem link="https://www.youtube.com/" target="_blank" text="YouTube" {...props} /> <NavItem link="https://www.facebook.com/" target="_blank" text="Facebook" {...props} /> <NavItem link="https://www.amazon.com/" target="_blank" text="Amazon" {...props} /> </Nav> ) export default NewTab
Version data entries
94 entries across 94 versions & 1 rubygems