mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-06 02:36:44 -05:00
trying to resolve next/font bug
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
'use server'
|
||||
export const ProductPage = async (props: any) => {
|
||||
interface ProductPageProps {
|
||||
data: {
|
||||
modelnumber: string;
|
||||
};
|
||||
}
|
||||
|
||||
export const ProductPage = async (props: ProductPageProps) => {
|
||||
return (
|
||||
<div className="fixed pin z-50 overflow-auto bg-smoke-light flex">
|
||||
{props.data.modelnumber}
|
||||
|
||||
Reference in New Issue
Block a user