File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,10 @@ Create the source directory and core application files:
100100mkdir src
101101```
102102
103- Create ` src/index.jsx ` :
103+ 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
104107
105108``` jsx tab title="src/index.jsx"
106109/* @refresh reload */
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export type TabsProps = PolymorphicProps<
1313> ;
1414
1515export function Tabs ( props : TabsProps ) {
16- return < KobalteTabs { ...props } /> ;
16+ return < KobalteTabs class = "mt-6" { ...props } /> ;
1717}
1818
1919export type TabListProps = PolymorphicProps <
You can’t perform that action at this time.
0 commit comments