schlechtenburg/packages/docs/lib/pages/Introduction.tsx

12 lines
213 B
TypeScript

import { defineComponent } from 'vue';
import './Introduction.scss';
export default defineComponent({
name: 'Introduction',
setup() {
return () => <div class="introduction">Introduction</div>;
},
});