@linktr.ee/create-link-app 1.7.13 → 1.7.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.7.13",
2
+ "version": "1.7.14",
3
3
  "commands": {
4
4
  "build": {
5
5
  "id": "build",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linktr.ee/create-link-app",
3
- "version": "1.7.13",
3
+ "version": "1.7.14",
4
4
  "description": "Create a Link App on Linktr.ee.",
5
5
  "license": "UNLICENSED",
6
6
  "author": "Linktree",
@@ -1,20 +1,17 @@
1
- import { AppProps } from "./types";
1
+ import { AppProps } from './types'
2
2
 
3
- import "./tailwind.css";
3
+ import './tailwind.css'
4
4
 
5
5
  function App(props: AppProps) {
6
6
  return (
7
7
  <div className="px-6 pt-12 pb-11 h-full">
8
8
  <h1>My first link app!</h1>
9
9
  <p>Congratulations, you now have a Linktree link!</p>
10
- <button
11
- className="bg-black text-white py-2 px-4 rounded-full my-2"
12
- onClick={() => window.open(props.url, "_blank")}
13
- >
10
+ <button className="bg-black text-white py-2 px-4 rounded-full my-2" onClick={() => window.open(props.url, '_blank')}>
14
11
  Visit your URL
15
12
  </button>
16
13
  </div>
17
- );
14
+ )
18
15
  }
19
16
 
20
- export default App;
17
+ export default App