mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2025-01-08 11:50:54 +01:00
16 lines
522 B
React
16 lines
522 B
React
|
import 'bootstrap/dist/css/bootstrap.min.css';
|
||
|
import styles from './index.scss';
|
||
|
import React from 'react';
|
||
|
|
||
|
export default class App extends React.Component {
|
||
|
render() {
|
||
|
return (
|
||
|
<div>
|
||
|
<h1>It Works!</h1>
|
||
|
<p>This React project just works including <span className={styles.blueBg}>module</span> local styles.</p>
|
||
|
<p>Global bootstrap css import works too as you can see on the following button.</p>
|
||
|
<p><a className="btn btn-primary btn-lg">Enjoy!</a></p>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
}
|