parent
54e4a7a0e0
commit
cc0b1d4007
@ -0,0 +1,24 @@
|
||||
import React from 'react';
|
||||
import { Link } from 'react-router-dom';
|
||||
import '../Style/Global.css';
|
||||
import { FormattedMessage } from 'react-intl';
|
||||
|
||||
import { useTheme } from '../Style/ThemeContext';
|
||||
|
||||
//@ts-ignore
|
||||
function ColoredIndices({ letter, color}) {
|
||||
|
||||
const theme = useTheme();
|
||||
|
||||
// const mystyle = {
|
||||
// backgroundColor: "#0064E0",
|
||||
// };
|
||||
|
||||
return (
|
||||
<div className='centerDivH' style={{ backgroundColor: theme.colors.primary }}>
|
||||
<img src={letter} alt="Indice Letter"/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default ColoredIndices;
|
@ -1,6 +1,6 @@
|
||||
import { io } from "socket.io-client";
|
||||
|
||||
|
||||
const socket = io("http://localhost:3002");
|
||||
const socket = io("http://127.20.10.4:3002");
|
||||
|
||||
export {socket}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"name": "Cryptid",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {}
|
||||
}
|
Loading…
Reference in new issue