Miao-Yunzai/component/List.tsx

9 lines
175 B
TypeScript
Raw Normal View History

2024-06-15 11:18:45 +08:00
import React from "react";
export default function List({ children }) {
return (
<ul className="divide-y divide-slate-100">
{children}
</ul>
)
}