mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
8 lines
159 B
TypeScript
8 lines
159 B
TypeScript
|
import React from 'react';
|
||
|
|
||
|
import * as styles from './App.module.scss';
|
||
|
|
||
|
export const App = () => {
|
||
|
return <h1 className={styles.app}>Hello world!</h1>;
|
||
|
};
|