diff --git a/index.html b/index.html index 48c59fc..3d834a6 100644 --- a/index.html +++ b/index.html @@ -1,16 +1,19 @@ - + + Solid App - - + + +
- - + + + \ No newline at end of file diff --git a/src/App.module.css b/src/App.module.css deleted file mode 100644 index 48308b2..0000000 --- a/src/App.module.css +++ /dev/null @@ -1,33 +0,0 @@ -.App { - text-align: center; -} - -.logo { - animation: logo-spin infinite 20s linear; - height: 40vmin; - pointer-events: none; -} - -.header { - background-color: #282c34; - min-height: 100vh; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - font-size: calc(10px + 2vmin); - color: white; -} - -.link { - color: #b318f0; -} - -@keyframes logo-spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} diff --git a/src/App.tsx b/src/App.tsx index fbcd7a4..aa1a739 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,25 +1,7 @@ -import type { Component } from "solid-js"; - -import logo from "./logo.svg"; -import styles from "./App.module.css"; - -const App: Component = () => ( -
-
- logo -

- Edit src/App.tsx and save to reload. -

- - Learn Solid - -
-
-); - -export default App; +export default function() { + return ( +
+ Hola mundo :D +
+ ); +} diff --git a/src/logo.svg b/src/logo.svg deleted file mode 100644 index 025aa30..0000000 --- a/src/logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file