Skip to content

Commit

Permalink
michal's review
Browse files Browse the repository at this point in the history
  • Loading branch information
mapache-salvaje committed Jun 22, 2023
1 parent 2fe889d commit 2da036e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions examples/base-cra-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,8 @@
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "latest"
}
}
4 changes: 2 additions & 2 deletions examples/base-cra-ts/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import * as React from 'react';
import './index.css';

export default function RowAndColumnSpacing() {
export default function App() {
return (
<div className="box">
<h1>Base UI + Create React App scaffold (TypeScript)</h1>
<div className="item">
<a href="https://mui.com/base/getting-started/overview/">Base UI</a> is a library of
<a href="https://mui.com/base-ui/getting-started/overview/">Base UI</a> is a library of
unstyled React UI components which includes prebuilt components with production-ready
functionality, along with low-level hooks for transferring that functionality to other
components.
Expand Down
3 changes: 3 additions & 0 deletions examples/base-cra/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,8 @@
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "latest"
}
}
4 changes: 2 additions & 2 deletions examples/base-cra/src/App.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import * as React from 'react';
import './index.css';

export default function RowAndColumnSpacing() {
export default function App() {
return (
<div className="box">
<h1>Base UI + Create React App scaffold (JavaScript)</h1>
<div className="item">
<a href="https://mui.com/base/getting-started/overview/">Base UI</a> is a library of
<a href="https://mui.com/base-ui/getting-started/overview/">Base UI</a> is a library of
unstyled React UI components which includes prebuilt components with production-ready
functionality, along with low-level hooks for transferring that functionality to other
components.
Expand Down

0 comments on commit 2da036e

Please sign in to comment.