mirror of
https://github.com/vercel/commerce.git
synced 2025-07-21 11:51:20 +00:00
17 lines
279 B
TypeScript
17 lines
279 B
TypeScript
import React from 'react';
|
|
import { DateTime } from "src/components/common";
|
|
|
|
interface Props{
|
|
image:StaticImageData,
|
|
}
|
|
|
|
const BlogContent = ({}:Props) => {
|
|
return (
|
|
<>
|
|
<DateTime date="APRIL 30, 2021"/>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default BlogContent
|