diff --git a/.github/workflows/deploy-github-pages.yaml b/.github/workflows/deploy-github-pages.yaml index 65cd35f..61318b3 100644 --- a/.github/workflows/deploy-github-pages.yaml +++ b/.github/workflows/deploy-github-pages.yaml @@ -21,7 +21,7 @@ jobs: run: npm install - name: Build Storybook - run: npm run build -- -o ./storybook-static + run: npm run build -- -o storybook-static - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 diff --git a/index.html b/index.html deleted file mode 100644 index b199a4a..0000000 --- a/index.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - Redback UI - - -
- - - diff --git a/src/main.tsx b/src/main.tsx deleted file mode 100644 index 25c700e..0000000 --- a/src/main.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import React from 'react'; -import ReactDOM from 'react-dom/client'; -import RedbackUiThemeProvider from './providers/RedbackUiThemeProvider/RedbackUiThemeProvider.tsx'; -import { themes } from './themes'; - -ReactDOM.createRoot(document.getElementById('root')!).render( - - -

418: I'm A Teapot

-

This is not the coffee you're trying to brew

-

Please head back to your terminal and run `npm run storybook`

-
-
, -);