diff --git a/src/pages/honkai3rd/enemies.tsx b/src/pages/honkai3rd/enemies.tsx new file mode 100644 index 00000000..b11a6af4 --- /dev/null +++ b/src/pages/honkai3rd/enemies.tsx @@ -0,0 +1,49 @@ +/* eslint-disable jsx-a11y/alt-text */ +import { times } from 'ramda' + +interface BossSearchPageProps {} + +const AZArray = times((index) => { + const charCode = 'A'.charCodeAt(0) + index + const result = String.fromCharCode(charCode) + return result +}, 26) +const NumberArray = times((index) => { + if (index / 100 >= 1) { + return index + } + if (index / 10 >= 1) { + return '0' + index + } + return '00' + index +}, 1000) + +const BossSearchPage = ({}: BossSearchPageProps) => { + return NumberArray.map((number) => number + '.png').map((item) => { + return ( + + ) + }) + // return AZArray.reduce((array, firstChar) => { + // return [ + // ...array, + // ...AZArray.map((secondChar) => firstChar + secondChar + '_110.png'), + // ] + // }, []).map((item) => { + // return ( + // + // ) + // }) +} + +export default BossSearchPage + +// PSY : UL +// MECHA : RO +// BIO : DG