This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
const Mac = () => { | |
return ( | |
<div className="mac-wrapper"> | |
<div className="screen"> | |
</div> | |
</div> | |
); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
function Mac() { | |
return ( | |
); | |
} | |
export default Mac |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Search.js | |
import React from 'react'; | |
function Search() { | |
return ( | |
<div className="search-box"> | |
<input type="text" className="search-input"/> | |
<style jsx>{` | |
.search-box { |