posts.tsx 143 Bytes
Newer Older
Lee Soobeom's avatar
posts    
Lee Soobeom committed
1
2
3
4
5
6
import React, { ReactNode } from "react";
import { Outlet } from "react-router-dom";

export default function Posts() {
  return <Outlet />;
}