0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-11-01 16:07:59 +09:00
yude.jp/pages/components/Minecraft/Head.js

15 lines
256 B
JavaScript
Raw Normal View History

import React, { useState, useEffect } from 'react';
function App (props) {
const uuid = props;
return (
2021-12-11 19:19:50 +09:00
<img
src={"https://crafatar.com/renders/body/" + uuid.uuid}
width={110}
height={250}
/>
)
}
export default App;