mirror of
https://github.com/logto-io/logto.git
synced 2024-12-30 20:33:54 -05:00
5ce8c18652
* feat(console): init * refactor: remove unused tsconfig props * fix: lint error
7 lines
159 B
TypeScript
7 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>;
|
|
};
|