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'; | |
export default function Emoji(props) { | |
return( | |
<span | |
className="emoji" | |
role="img" | |
aria-label={props.l ? props.l : ""} | |
> | |
{props.ji} |
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
pragma solidity ^0.4.0; | |
contract Courses { | |
string fName; | |
uint age; | |
function setInstructor(string _fName, uint _age) public { | |
fName = _fName; | |
age = _age; |
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
pragma solidity ^0.4.0; | |
contract Courses { | |
string fName; | |
uint age; | |
function setInstructor(string _fName, uint _age) public { | |
fName = _fName; | |
age = _age; |
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
pragma solidity ^0.4.0; | |
contract Courses { | |
string fName; | |
uint age; | |
function setInstructor(string _fName, uint _age) public { | |
fName = _fName; | |
age = _age; |
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
pragma solidity ^0.4.0; | |
contract Courses { | |
string fName; | |
uint age; | |
function setInstructor(string _fName, uint _age) public { | |
fName = _fName; | |
age = _age; |
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
pragma solidity ^0.4.0; | |
contract Courses { | |
string fName; | |
uint age; | |
function setInstructor(string _fName, uint _age) public { | |
fName = _fName; | |
age = _age; |
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
pragma solidity ^0.4.0; | |
contract Courses { | |
string fName; | |
uint age; | |
function setInstructor(string _fName, uint _age) public { | |
fName = _fName; | |
age = _age; |
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
pragma solidity ^0.4.0; | |
contract Courses { | |
string fName; | |
uint age; | |
function setInstructor(string _fName, uint _age) public { | |
fName = _fName; | |
age = _age; |
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
pragma solidity ^0.4.0; | |
contract Courses { | |
string fName; | |
uint age; | |
function setInstructor(string _fName, uint _age) public { | |
fName = _fName; | |
age = _age; |
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
pragma solidity ^0.4.0; | |
contract Courses { | |
string fName; | |
uint age; | |
function setInstructor(string _fName, uint _age) public { | |
fName = _fName; | |
age = _age; |
NewerOlder