mirror of
https://github.com/swc-project/swc.git
synced 2025-01-07 06:06:41 +03:00
19 lines
300 B
JavaScript
19 lines
300 B
JavaScript
|
import React from 'react';
|
||
|
|
||
|
function App() {
|
||
|
const isLoading = true;
|
||
|
return (
|
||
|
<div>
|
||
|
<h1>works </h1>
|
||
|
{
|
||
|
isLoading ? (
|
||
|
<div>loading </div>
|
||
|
) : (
|
||
|
<div>naaaaaaaaaaaaffffffffffffffff </div>
|
||
|
)
|
||
|
}
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default App;
|