type Id = int

type Action =
    | ShowRecentBlogs
    | CreateBlog
    | ReadBlog of Id
    | UpdateBlog of Id
    | DeleteBlog of Id