feat: implement barebone zola templates
This commit is contained in:
parent
7487c327cd
commit
22901cf551
198 changed files with 2434 additions and 227991 deletions
15
_src/components/Carousel/CarouselItem.tsx
Normal file
15
_src/components/Carousel/CarouselItem.tsx
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import React from 'react';
|
||||
|
||||
import classes from './Carousel.module.css';
|
||||
|
||||
interface Props {
|
||||
children: JSX.Element | JSX.Element[];
|
||||
}
|
||||
|
||||
export default function CarouselItem({ children }: Props): JSX.Element {
|
||||
return (
|
||||
<div className={classes.item}>
|
||||
<div className={classes.itemContent}>{children}</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue