nx/nx-dev/ui-blog/src/index.ts
Nicholas Cunningham b9b89b2575
feat(nx-dev): Use app router for blogs (#23127)
The PR activates the app router for the Blog page at /blog. 

Its purpose is to test Next.js changes within nx-dev, allowing us to
identify and address any issues that users might encounter.
Integrating these changes into our environment, we can gain firsthand
experience and insights into potential problems, ensuring that the
updates are robust and reliable.

This approach helps us improve the overall quality and user experience
of our platform by proactively identifying and resolving any issues that
could affect consumers.
2024-06-11 09:28:29 -04:00

7 lines
295 B
TypeScript

export { BlogAuthors } from './lib/authors';
export { BlogEntry } from './lib/blog-entry';
export { MoreBlogs } from './lib/more-blogs';
export { BlogDetails } from './lib/blog-details';
export { BlogContainer } from './lib/blog-container';
export { FeaturedBlogs } from './lib/featured-blogs';