import React from "react"; type Props = { title: string; desc: string; children: React.ReactNode; }; const SettingBlock = ({ title, desc, children }: Props) => { return (
{title}
{desc}