We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 134d2c4 commit 2d23eaeCopy full SHA for 2d23eae
2 files changed
src/routes/getting-started/installation.mdx
@@ -100,7 +100,10 @@ Create the source directory and core application files:
100
mkdir src
101
```
102
103
-Create `src/index.jsx`:
+Once the `src` directory is created, you can create the following files:
104
+- `src/index.jsx` - Application entry point
105
+- `src/App.jsx` - Root component
106
+- `src/index.css` - Global styles
107
108
```jsx tab title="src/index.jsx"
109
/* @refresh reload */
src/ui/tabs.tsx
@@ -13,7 +13,7 @@ export type TabsProps = PolymorphicProps<
13
>;
14
15
export function Tabs(props: TabsProps) {
16
- return <KobalteTabs {...props} />;
+ return <KobalteTabs class="mt-6" {...props} />;
17
}
18
19
export type TabListProps = PolymorphicProps<
0 commit comments