Moves routes inside an _app for the header and builds a print route
This commit is contained in:
8
src/components/documents/monsters/MonsterPrintRow.tsx
Normal file
8
src/components/documents/monsters/MonsterPrintRow.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import type { Monster } from "@/lib/types";
|
||||
|
||||
/**
|
||||
* Renders an editable monster row
|
||||
*/
|
||||
export const MonsterPrintRow = ({ monster }: { monster: Monster }) => {
|
||||
return <li>{monster.data.monster.name}</li>;
|
||||
};
|
||||
Reference in New Issue
Block a user