Skip to content
Snippets Groups Projects
Article.js 331 B
Newer Older
import React, {useEffect, useState} from "react";

import { useParams } from 'react-router-dom';



function Article(prop) {
  return (
    <div>
      <h1>{prop.title}</h1>
      <h2>{prop.author}</h2>
      <p>{prop.content}</p>
      {/* 게시글의 내용을 렌더링합니다. */}
    </div>
  );
}

export default Article;