--- export interface Props { children: any; } import '../styles/global.css'; import '../styles/theme.css'; import 'github-markdown-css/github-markdown-light.css'; export interface Props { title?: string; description?: string; lang?: string; charset?: string; } const { title = 'Light Code', description = 'A lightweight code editor', lang = 'zh-CN', charset = 'UTF-8' } = Astro.props; ---