Skip to content

Instantly share code, notes, and snippets.

@sirdarthvader
Last active March 27, 2018 00:33
Show Gist options
  • Save sirdarthvader/44acaa3fc8726492e880f8561933174b to your computer and use it in GitHub Desktop.
Save sirdarthvader/44acaa3fc8726492e880f8561933174b to your computer and use it in GitHub Desktop.
import React from 'react';
import Tilt from 'react-tilt';
import brain from './brain.png';
import './Navigation.css';
const Navigation = () => {
return (
<div className="nav pa3">
<div>
<Tilt className="Tilt"
options={{ max: 25 }}
style={{ height: 150, width: 150 }} >
<div className="Tilt-inner">
<img src={brain} alt='brain' />
</div>
</Tilt>
</div>
<div className="login">
<span className='f3 link dim black underline pa3 pointer'>
Signout
</span>
</div>
</div>
);
}
export default Navigation;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment