add ngrok - localhost public share

develop
TBS093A 2020-05-27 18:29:59 +02:00
parent fe4f47547b
commit 74b3946868
3 changed files with 3 additions and 3 deletions

BIN
ngrok 100755

Binary file not shown.

View File

@ -1,5 +1,5 @@
export const alphabet = {
export const alphabeth = {
'A':
"=-=-=as=-\n"

View File

@ -1,7 +1,7 @@
import React, { useState, useEffect } from 'react'
import '../styles/audioVisualizer.scss'
import { alphabet } from '../assets/alphabet'
import { alphabeth } from '../assets/alphabeth'
import audioTest from '../images/audioTest.mp3'
@ -196,7 +196,7 @@ const IndexInterface = () => {
let titleASCII = [];
let i
for (i = 0; i < title.length; i++) {
titleASCII[i] = alphabet[title[i]]
titleASCII[i] = alphabeth[title[i]]
titleASCII[i] += '\n'
titleASCII[i].replace(',', '')
}