mirror of
https://github.com/yewstack/yew.git
synced 2026-01-18 16:16:48 +00:00
* feat(examples): add function components todo example * chore(examples): apply feedback for function components example * chore(examples): apply more feedback for function components example * feat(examples): implement custom hook for edit boolean toggle * chore(examples): prep for merge, add more documentation * chore(examples): add more descriptive comment to function component hook, fix cargo.toml
18 lines
450 B
HTML
18 lines
450 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Yew • Function TodoMVC</title>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/todomvc-common@1.0.5/base.css"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/todomvc-app-css@2.3.0/index.css"
|
|
/>
|
|
</head>
|
|
<body></body>
|
|
</html>
|