Three Column Blog
The ThreeColumnBlog
component is designed to display a list of blog posts in a three-column layout. It includes a search input for filtering blog posts.
UI Preview




Usage
To use the ThreeColumnBlog
component, import it and provide it with the necessary blogPosts
data. Here is a basic example:
import React from "react";import { ThreeColumnBlog } from "@app-launch-kit/components/custom/three-column-blog";import blogPosts from "./data";
export const ThreeColumnBlogBasic = () => { return <ThreeColumnBlog blogPosts={blogPosts} />;};