6 lines
154 B
JavaScript
6 lines
154 B
JavaScript
|
import { truncate } from "./components/index.js";
|
||
|
|
||
|
const BodyPreview = ({ value }) => h("p", {}, truncate(value ?? "", 50));
|
||
|
|
||
|
export default BodyPreview;
|