From 5ec589f22072bcd63327008ff9a6165582b57921 Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Sun, 27 Mar 2022 09:52:55 -0500 Subject: [PATCH] fix: remove images from example --- examples/router/src/components/Box.astro | 14 ++++++++++++++ .../router/src/pages/routes/dashboard/one.astro | 8 ++++++-- .../router/src/pages/routes/dashboard/three.astro | 8 ++++++-- .../router/src/pages/routes/dashboard/two.astro | 6 +++++- 4 files changed, 31 insertions(+), 5 deletions(-) create mode 100644 examples/router/src/components/Box.astro diff --git a/examples/router/src/components/Box.astro b/examples/router/src/components/Box.astro new file mode 100644 index 0000000000..b6c80dc34e --- /dev/null +++ b/examples/router/src/components/Box.astro @@ -0,0 +1,14 @@ +--- +const { color = "red" } = Astro.props; +--- + +
+ + diff --git a/examples/router/src/pages/routes/dashboard/one.astro b/examples/router/src/pages/routes/dashboard/one.astro index adac548e39..916312ef1d 100644 --- a/examples/router/src/pages/routes/dashboard/one.astro +++ b/examples/router/src/pages/routes/dashboard/one.astro @@ -1,3 +1,7 @@ -

One

+--- +import Box from '../../../components/Box.astro' +--- - +

Two

+ + diff --git a/examples/router/src/pages/routes/dashboard/three.astro b/examples/router/src/pages/routes/dashboard/three.astro index 2ee33e96ed..fb41f471f3 100644 --- a/examples/router/src/pages/routes/dashboard/three.astro +++ b/examples/router/src/pages/routes/dashboard/three.astro @@ -1,3 +1,7 @@ -

Three

+--- +import Box from '../../../components/Box.astro' +--- - +

Two

+ + diff --git a/examples/router/src/pages/routes/dashboard/two.astro b/examples/router/src/pages/routes/dashboard/two.astro index a473e9fe9b..b8dfabfb90 100644 --- a/examples/router/src/pages/routes/dashboard/two.astro +++ b/examples/router/src/pages/routes/dashboard/two.astro @@ -1,3 +1,7 @@ +--- +import Box from '../../../components/Box.astro' +--- +

Two

- +