返回 reveal.js
stack.tsx
根目录 / react / src / components / stack.tsx
1 import type { StackProps } from '../types';
2
3 export function Stack({ className, style, children }: StackProps) {
4 return (
5 <section className={className} style={style}>
6 {children}
7 </section>
8 );
9 }
10
10 lines Plain Text