BodyPage.tsx 751 Bytes
Newer Older
Lee Soobeom's avatar
Lee Soobeom committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import React from "react";
import { Link, Outlet } from "react-router-dom";

export default function BodyPage() {
    return (
        <div className="flex flex-col">
            <div className="flex px-5 py-5">
                <div className="flex w-full bg-emerald-400 rounded">Theme</div>
            </div>
            <div className="flex flex-col h-96 px-5 py-5 md:flex-row">
                <div className="flex px-5 py-5">
                    <div className="w-full h-20 md:h-full bg-gray-400 rounded">Citylist</div>
                </div>
                <div className="flex px-5 py-5 md:w-full">
                    <div className="w-full h-96 bg-red-400 rounded">Pic</div>
                </div>
            </div>
        </div>
    );

}