Skip to content

Instantly share code, notes, and snippets.

View mattshardman's full-sized avatar

Matt Hardman mattshardman

View GitHub Profile
import React from 'react';
const Mac = ({ isMobile, children }) => {
return (
<div className="mac-wrapper">
<div className="screen-section">
</div>
<style jsx>{`
.mac-wrapped {
width: ${cw}px;
import React from 'react';
const Mac = () => {
return (
<div className="mac-wrapper">
<div className="screen">
</div>
</div>
);
}
import React from 'react';
function Mac() {
return (
);
}
export default Mac
// Search.js
import React from 'react';
function Search() {
return (
<div className="search-box">
<input type="text" className="search-input"/>
<style jsx>{`
.search-box {