Make a Supported Devices Page
Use Seam Components to make a Supported Devices page
Last updated
Was this helpful?
Use Seam Components to make a Supported Devices page
Last updated
Was this helpful?
Was this helpful?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Seam Components</title>
</head>
<body>
<main>
<seam-supported-device-table
publishable-key="your_publishable_key"
></seam-supported-device-table>
</main>
<script
type="module"
src="https://react.seam.co/v/1.42.1/dist/elements.js"
></script>
</body>
</html>npm install --save @seamapi/reactimport { SupportedDeviceTable, SeamProvider } from "@seamapi/react"
export const App = () => {
return (
<SeamProvider publishableKey="your_publishable_key">
<main>
<SupportedDeviceTable />
</main>
</SeamProvider>
)
}npm install --save @seamapi/reactimport "@seamapi/react/elements.js"<seam-supported-device-table publishable-key="your_publishable_key"></seam-supported-device-table>