X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;ds=sidebyside;f=resources%2Fjs%2Fcomponents%2Frounds%2FSeedCode.js;fp=resources%2Fjs%2Fcomponents%2Frounds%2FSeedCode.js;h=1539c18009718e7a480b0bda9b7e394678891e77;hb=2110d91bc5016fd78aec02578b09506b6d67f45e;hp=0000000000000000000000000000000000000000;hpb=c0980e3225576839de383a6988df40d7630bd316;p=alttp.git diff --git a/resources/js/components/rounds/SeedCode.js b/resources/js/components/rounds/SeedCode.js new file mode 100644 index 0000000..1539c18 --- /dev/null +++ b/resources/js/components/rounds/SeedCode.js @@ -0,0 +1,17 @@ +import PropTypes from 'prop-types'; +import React from 'react'; + +import ZeldaIcon from '../common/ZeldaIcon'; + +const SeedCode = ({ code }) => + + {code.map((symbol, index) => + + )} +; + +SeedCode.propTypes = { + code: PropTypes.arrayOf(PropTypes.string), +}; + +export default SeedCode;