0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-06-09 15:26:01 +09:00

Remove weird comments

This commit is contained in:
yude 2021-09-24 16:49:07 +09:00
parent 7629eb6c49
commit eb46a60119
Signed by: yude
GPG Key ID: EB0FE5D925C4A968

View File

@ -4,7 +4,6 @@ import axios from 'axios';
function App (props) {
const uuid = props;
const [data, setData] = useState({ hits: [] });
// const uuid_nohyphen = uuid.uuid.toString().replace(/-/g, "");
useEffect(() => {
const fetchData = async () => {
@ -21,8 +20,6 @@ function App (props) {
}else {
return <span>{data.username}</span>
};
// return <p>{uuid_nohyphen}</p>
}
export default App;