From 7b38ef35deb01dd5d1fd1eec52f2c7b215f3473d Mon Sep 17 00:00:00 2001 From: abhilashlr Date: Sat, 23 Jan 2021 08:17:02 +0530 Subject: [PATCH 1/2] adds Raj's blog --- content/the-ember-times-issue-172.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/content/the-ember-times-issue-172.md b/content/the-ember-times-issue-172.md index 52c1c4283..c151ec8f1 100644 --- a/content/the-ember-times-issue-172.md +++ b/content/the-ember-times-issue-172.md @@ -4,6 +4,7 @@ authors: - the-crowd # replace with real authors from the author folder (add yourself if you're not there) - chris-ng - amy-lam + - abhilashlr date: 2021-01-29T00:00:00.000Z tags: - newsletter @@ -15,6 +16,7 @@ tags: Try TypeScript in your Ember app today with a video tutorial 🔤, Storybook for Ember tutorial 🎨, +Building a Router component for Glimmer.js 🧭, --- @@ -51,14 +53,13 @@ Already using Storybook with Ember, or going to try it out in your application? --- -## [3. Section title in sentence case 🐹](section-url) +## [3. Building a Router component for Glimmer.js 🧭](https://dev.to/rajasegar/building-a-router-component-for-glimmer-js-52bk) - - - +[Rajasegar Chandran (@rajasegar)](https://github.com/rajasegar) wrote a blog on building routing components for apps built using Glimmer.js. Glimmer being rendering engine, unlike Ember that has the routing capabilities built in, his blog helps you to walk through how routing can be achieved for Glimmer apps. He talks about this Routing system by building a Route Registry, Route component, Link component, and the Router Component. - - +As a bonus he also mentions about how you can achieve code-splitting JS bundles and lazy loading components. + +Read more about [Building a Router component for Glimmer.js](https://dev.to/rajasegar/building-a-router-component-for-glimmer-js-52bk) if you have been looking for routers for your Glimmer apps! --- @@ -154,4 +155,4 @@ That's another wrap! ✨ Be kind, -Chris Ng, Amy Lam and the Learning Team +Chris Ng, Amy Lam, Abhilash L R and the Learning Team From d286bb6e1a2f865f274fccf1f152f7ba713c4ef0 Mon Sep 17 00:00:00 2001 From: abhilashlr Date: Tue, 26 Jan 2021 08:43:06 +0530 Subject: [PATCH 2/2] Update content/the-ember-times-issue-172.md Co-authored-by: Isaac Lee <16869656+ijlee2@users.noreply.github.com> --- content/the-ember-times-issue-172.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/the-ember-times-issue-172.md b/content/the-ember-times-issue-172.md index c151ec8f1..8dcda3774 100644 --- a/content/the-ember-times-issue-172.md +++ b/content/the-ember-times-issue-172.md @@ -55,7 +55,7 @@ Already using Storybook with Ember, or going to try it out in your application? ## [3. Building a Router component for Glimmer.js 🧭](https://dev.to/rajasegar/building-a-router-component-for-glimmer-js-52bk) -[Rajasegar Chandran (@rajasegar)](https://github.com/rajasegar) wrote a blog on building routing components for apps built using Glimmer.js. Glimmer being rendering engine, unlike Ember that has the routing capabilities built in, his blog helps you to walk through how routing can be achieved for Glimmer apps. He talks about this Routing system by building a Route Registry, Route component, Link component, and the Router Component. +[Rajasegar Chandran (@rajasegar)](https://github.com/rajasegar) wrote a blog on building routing components for apps built using Glimmer.js. Unlike Ember, which has built-in routing, Glimmer is only a rendering engine. Rajasegar's blog walks through how routing can be achieved for Glimmer apps. He talks about this Routing system by building a Route Registry, Route component, Link component, and the Router Component. As a bonus he also mentions about how you can achieve code-splitting JS bundles and lazy loading components.