-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d32b43d
commit 6918101
Showing
4 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { Link } from "@remix-run/react"; | ||
import React from "react"; | ||
|
||
import { HeroHeading } from "~/HeroHeading"; | ||
|
||
export interface LayoutProps extends React.PropsWithChildren { | ||
back?: boolean; | ||
title: string; | ||
} | ||
|
||
export function Layout({ back, children, title }: LayoutProps) { | ||
return ( | ||
<div> | ||
<main> | ||
<HeroHeading>{title}</HeroHeading> | ||
{back && <Link to="/">Boston TS ⬅️</Link>} | ||
{children} | ||
</main> | ||
<footer> | ||
<Link to="/about">About</Link> | ||
</footer> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { Layout } from "~/components/Layout"; | ||
|
||
export default function Index() { | ||
return <Layout title="Boston TypeScript">Hello, world!</Layout>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { Layout } from "~/components/Layout"; | ||
|
||
export default function About() { | ||
return ( | ||
<Layout back title="About"> | ||
Hello, world! | ||
</Layout> | ||
); | ||
} |