diff options
author | 2021-09-27 01:33:15 -0700 | |
---|---|---|
committer | 2021-09-27 01:33:15 -0700 | |
commit | 86109dcfd008baf8778cc221cc25f90dd77121e9 (patch) | |
tree | f04bf172b671fcfa09b6c53a4f9d1143e405bb0b /examples/macros/public/index.html | |
parent | adf22db8b675c482c7f0a5ac4e659ea5374aa8fc (diff) | |
download | bun-86109dcfd008baf8778cc221cc25f90dd77121e9.tar.gz bun-86109dcfd008baf8778cc221cc25f90dd77121e9.tar.zst bun-86109dcfd008baf8778cc221cc25f90dd77121e9.zip |
Add a few macros examples
Diffstat (limited to 'examples/macros/public/index.html')
-rw-r--r-- | examples/macros/public/index.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/macros/public/index.html b/examples/macros/public/index.html new file mode 100644 index 000000000..a2a985b72 --- /dev/null +++ b/examples/macros/public/index.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> + <head> + <title>Macro test</title> + <meta charset="utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + + <link rel="stylesheet" href="/styles.css" type="text/css" /> + </head> + + <body> + <script async type="module" src="/src/index.tsx"></script> + </body> +</html> |