This file contains hidden or 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
| const testModule = (() => { | |
| let counter = 0; | |
| return { | |
| incrementCounter() { | |
| return counter++; | |
| }, | |
This file contains hidden or 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'; | |
| import styled from 'styled-components'; | |
| import PropTypes from 'prop-types'; | |
| const Wrapper = styled.div``; | |
| const HelloWorld = () => { | |
| return <Wrapper> | |
| <h1>Hello World!</h1> | |
| <Wrapper />; |
OlderNewer