2021-03-28 21:20:05 +00:00
|
|
|
import { Component } from "react";
|
2021-03-28 15:39:48 +00:00
|
|
|
|
2021-03-28 21:20:05 +00:00
|
|
|
class App extends Component {
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div className="App">
|
2021-03-30 10:16:55 +00:00
|
|
|
<header className="App-header">
|
|
|
|
<h1>Kene's Cribs</h1>
|
|
|
|
<p>Real Website loading.......</p>
|
|
|
|
</header>
|
|
|
|
<section>
|
|
|
|
<h1>hello everyone</h1>
|
|
|
|
<div class="alert alert-primary" role="alert">
|
|
|
|
A simple primary alert—check it out!
|
|
|
|
</div>
|
|
|
|
<div class="alert alert-primary" role="alert">
|
|
|
|
A simple primary alert—check it out!
|
|
|
|
</div>
|
|
|
|
<div class="alert alert-primary" role="alert">
|
|
|
|
A simple primary alert—check it out!
|
|
|
|
</div>
|
|
|
|
<div class="alert alert-primary" role="alert">
|
|
|
|
A simple primary alert—check it out!
|
|
|
|
</div>
|
|
|
|
</section>
|
2021-03-28 21:20:05 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2021-03-28 15:39:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|