This repository has been archived on 2023-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
persona__/templates/index.html
2021-09-07 13:49:06 +09:00

31 lines
661 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Webpack App</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
</head>
<body>
<persona-layout>
<persona-app-bar slot="header" heading="Title!"></persona-app-bar>
<div slot="nav">Nav</div>
<div slot="main">
<persona-flow-layout>
<div
data-width="4"
style="background-color: aquamarine; text-align: center"
>
A
</div>
</persona-flow-layout>
<persona-button primary onclick="console.log('clicked')"
>Click me</persona-button
>
</div>
</persona-layout>
</body>
</html>