14 lines
353 B
TypeScript
14 lines
353 B
TypeScript
import Shortcut from "../Shortcut"
|
|
|
|
import styles from "./oneColumnList.module.css"
|
|
|
|
import { ShortcutsListProps } from "@/types/components/myPages/myPage/shortcuts"
|
|
|
|
export default function OneColumnList({ linkList }: ShortcutsListProps) {
|
|
return (
|
|
<section className={styles.section}>
|
|
<Shortcut linkList={linkList} />
|
|
</section>
|
|
)
|
|
}
|