AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 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