Miao-Yunzai/component/List.tsx

6 lines
141 B
TypeScript
Raw Normal View History

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