This commit is contained in:
2025-04-30 01:50:08 +08:00
commit b1c48771e4
80 changed files with 62448 additions and 0 deletions

5
stories/Introduce.mdx Normal file
View File

@@ -0,0 +1,5 @@
# twu
当使用mui的组件的时候使用astro会有问题所以很多的组件应该是纯原生的组件模块。
使用tailwindcss来做样式使用原生的js来做交互。

11
stories/Page.stories.tsx Normal file
View File

@@ -0,0 +1,11 @@
import { Page } from './Page';
export default {
title: 'Page',
component: Page,
};
export const Primary = () => (
<div className='bg-red-500 p-4'>
<Page />
</div>
);

3
stories/Page.tsx Normal file
View File

@@ -0,0 +1,3 @@
export const Page = () => {
return <div>Page</div>;
};

1
stories/Test.mdx Normal file
View File

@@ -0,0 +1 @@
# Test