Skip to content

Commit 56d52b2

Browse files
committed
remove old epicshop component
1 parent aec5c58 commit 56d52b2

120 files changed

Lines changed: 0 additions & 662 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

exercises/01.styling/01.problem.public-links/app/epicshop.tsx

Lines changed: 0 additions & 9 deletions
This file was deleted.

exercises/01.styling/01.problem.public-links/app/root.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { LiveReload, Scripts } from '@remix-run/react'
2-
import { EpicShop } from './epicshop.tsx'
32

43
// 🐨 export a links function here that adds the favicon
54
// 💰 It should have the following properties:
@@ -14,7 +13,6 @@ export default function App() {
1413
<body>
1514
<p>Hello World</p>
1615
<Scripts />
17-
<EpicShop />
1816
<LiveReload />
1917
</body>
2018
</html>

exercises/01.styling/01.solution.public-links/app/epicshop.tsx

Lines changed: 0 additions & 9 deletions
This file was deleted.

exercises/01.styling/01.solution.public-links/app/root.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { type LinksFunction } from '@remix-run/node'
22
import { Links, LiveReload, Scripts } from '@remix-run/react'
3-
import { EpicShop } from './epicshop.tsx'
43

54
export const links: LinksFunction = () => {
65
return [{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' }]
@@ -15,7 +14,6 @@ export default function App() {
1514
<body>
1615
<p>Hello World</p>
1716
<Scripts />
18-
<EpicShop />
1917
<LiveReload />
2018
</body>
2119
</html>

exercises/01.styling/02.problem.asset-imports/app/epicshop.tsx

Lines changed: 0 additions & 9 deletions
This file was deleted.

exercises/01.styling/02.problem.asset-imports/app/root.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { type LinksFunction } from '@remix-run/node'
22
import { Links, LiveReload, Scripts } from '@remix-run/react'
33
// 🐨 Import the SVG favicon, named as 'faviconAssetUrl', using a default import statement.
4-
import { EpicShop } from './epicshop.tsx'
54

65
export const links: LinksFunction = () => {
76
// 🐨 swap the hard-coded href here with the default import of the favicon
@@ -17,7 +16,6 @@ export default function App() {
1716
<body>
1817
<p>Hello World</p>
1918
<Scripts />
20-
<EpicShop />
2119
<LiveReload />
2220
</body>
2321
</html>

exercises/01.styling/02.solution.asset-imports/app/epicshop.tsx

Lines changed: 0 additions & 9 deletions
This file was deleted.

exercises/01.styling/02.solution.asset-imports/app/root.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { type LinksFunction } from '@remix-run/node'
22
import { Links, LiveReload, Scripts } from '@remix-run/react'
33
import faviconAssetUrl from './assets/favicon.svg'
4-
import { EpicShop } from './epicshop.tsx'
54

65
export const links: LinksFunction = () => {
76
return [{ rel: 'icon', type: 'image/svg+xml', href: faviconAssetUrl }]
@@ -16,7 +15,6 @@ export default function App() {
1615
<body>
1716
<p>Hello World</p>
1817
<Scripts />
19-
<EpicShop />
2018
<LiveReload />
2119
</body>
2220
</html>

exercises/01.styling/03.problem.global-styles/app/epicshop.tsx

Lines changed: 0 additions & 9 deletions
This file was deleted.

exercises/01.styling/03.problem.global-styles/app/root.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { type LinksFunction } from '@remix-run/node'
22
import { Links, LiveReload, Scripts } from '@remix-run/react'
33
import faviconAssetUrl from './assets/favicon.svg'
4-
import { EpicShop } from './epicshop.tsx'
54
// 🐨 get the fontStylesheetUrl from the ./styles/font.css file
65

76
export const links: LinksFunction = () => {
@@ -20,7 +19,6 @@ export default function App() {
2019
<body>
2120
<p>Hello World</p>
2221
<Scripts />
23-
<EpicShop />
2422
<LiveReload />
2523
</body>
2624
</html>

0 commit comments

Comments
 (0)