mirror of
https://github.com/yude-jp/yude.jp
synced 2024-11-02 00:18:00 +09:00
16 lines
289 B
JavaScript
16 lines
289 B
JavaScript
import React, { useState, useEffect } from 'react';
|
|
import Image from 'next/image'
|
|
|
|
function App (props) {
|
|
const uuid = props;
|
|
|
|
return (
|
|
<Image
|
|
src={"https://crafatar.com/renders/body/" + uuid.uuid}
|
|
width={110}
|
|
height={250}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default App; |